1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00

Update dependencies

This commit is contained in:
Chris Cummer
2018-10-21 12:48:22 -07:00
parent 8f3ae94b4e
commit 3a0bcd21e7
132 changed files with 18033 additions and 9138 deletions

View File

@@ -5,8 +5,17 @@
"https://www.googleapis.com/auth/calendar": {
"description": "Manage your calendars"
},
"https://www.googleapis.com/auth/calendar.events": {
"description": "View and edit events on all your calendars"
},
"https://www.googleapis.com/auth/calendar.events.readonly": {
"description": "View events on all your calendars"
},
"https://www.googleapis.com/auth/calendar.readonly": {
"description": "View your calendars"
},
"https://www.googleapis.com/auth/calendar.settings.readonly": {
"description": "View your Calendar settings"
}
}
}
@@ -17,7 +26,7 @@
"description": "Manipulates events and other calendar data.",
"discoveryVersion": "v1",
"documentationLink": "https://developers.google.com/google-apps/calendar/firstapp",
"etag": "\"J3WqvAcMk4eQjJXvfSI4Yr8VouA/UfSqMqLGclhjNS9q0g-j705eXE8\"",
"etag": "\"J3WqvAcMk4eQjJXvfSI4Yr8VouA/HcEmuhTEJ15i1AnuK6mgjI8kmMs\"",
"icons": {
"x16": "http://www.google.com/images/icons/product/calendar-16.png",
"x32": "http://www.google.com/images/icons/product/calendar-32.png"
@@ -743,7 +752,10 @@
},
"scopes": [
"https://www.googleapis.com/auth/calendar",
"https://www.googleapis.com/auth/calendar.readonly"
"https://www.googleapis.com/auth/calendar.events",
"https://www.googleapis.com/auth/calendar.events.readonly",
"https://www.googleapis.com/auth/calendar.readonly",
"https://www.googleapis.com/auth/calendar.settings.readonly"
]
}
}
@@ -789,14 +801,30 @@
"type": "string"
},
"sendNotifications": {
"description": "Whether to send notifications about the deletion of the event. Optional. The default is False.",
"description": "Deprecated. Please use sendUpdates instead.\n\nWhether to send notifications about the deletion of the event. Note that some emails might still be sent even if you set the value to false. The default is false.",
"location": "query",
"type": "boolean"
},
"sendUpdates": {
"description": "Guests who should receive notifications about the deletion of the event.",
"enum": [
"all",
"externalOnly",
"none"
],
"enumDescriptions": [
"Notifications are sent to all guests.",
"Notifications are sent to non-Google Calendar guests only.",
"No notifications are sent. This value should only be used for migration use cases (note that in most migration cases the import method should be used)."
],
"location": "query",
"type": "string"
}
},
"path": "calendars/{calendarId}/events/{eventId}",
"scopes": [
"https://www.googleapis.com/auth/calendar"
"https://www.googleapis.com/auth/calendar",
"https://www.googleapis.com/auth/calendar.events"
]
},
"get": {
@@ -844,6 +872,8 @@
},
"scopes": [
"https://www.googleapis.com/auth/calendar",
"https://www.googleapis.com/auth/calendar.events",
"https://www.googleapis.com/auth/calendar.events.readonly",
"https://www.googleapis.com/auth/calendar.readonly"
]
},
@@ -883,7 +913,8 @@
"$ref": "Event"
},
"scopes": [
"https://www.googleapis.com/auth/calendar"
"https://www.googleapis.com/auth/calendar",
"https://www.googleapis.com/auth/calendar.events"
]
},
"insert": {
@@ -916,10 +947,25 @@
"type": "integer"
},
"sendNotifications": {
"description": "Whether to send notifications about the creation of the new event. Optional. The default is False.",
"description": "Deprecated. Please use sendUpdates instead.\n\nWhether to send notifications about the creation of the new event. Note that some emails might still be sent even if you set the value to false. The default is false.",
"location": "query",
"type": "boolean"
},
"sendUpdates": {
"description": "Whether to send notifications about the creation of the new event. Note that some emails might still be sent. The default is false.",
"enum": [
"all",
"externalOnly",
"none"
],
"enumDescriptions": [
"Notifications are sent to all guests.",
"Notifications are sent to non-Google Calendar guests only.",
"No notifications are sent. This value should only be used for migration use cases (note that in most migration cases the import method should be used)."
],
"location": "query",
"type": "string"
},
"supportsAttachments": {
"description": "Whether API client performing operation supports event attachments. Optional. The default is False.",
"location": "query",
@@ -934,7 +980,8 @@
"$ref": "Event"
},
"scopes": [
"https://www.googleapis.com/auth/calendar"
"https://www.googleapis.com/auth/calendar",
"https://www.googleapis.com/auth/calendar.events"
]
},
"instances": {
@@ -1016,6 +1063,8 @@
},
"scopes": [
"https://www.googleapis.com/auth/calendar",
"https://www.googleapis.com/auth/calendar.events",
"https://www.googleapis.com/auth/calendar.events.readonly",
"https://www.googleapis.com/auth/calendar.readonly"
],
"supportsSubscription": true
@@ -1144,6 +1193,8 @@
},
"scopes": [
"https://www.googleapis.com/auth/calendar",
"https://www.googleapis.com/auth/calendar.events",
"https://www.googleapis.com/auth/calendar.events.readonly",
"https://www.googleapis.com/auth/calendar.readonly"
],
"supportsSubscription": true
@@ -1177,9 +1228,24 @@
"type": "string"
},
"sendNotifications": {
"description": "Whether to send notifications about the change of the event's organizer. Optional. The default is False.",
"description": "Deprecated. Please use sendUpdates instead.\n\nWhether to send notifications about the change of the event's organizer. Note that some emails might still be sent even if you set the value to false. The default is false.",
"location": "query",
"type": "boolean"
},
"sendUpdates": {
"description": "Guests who should receive notifications about the change of the event's organizer.",
"enum": [
"all",
"externalOnly",
"none"
],
"enumDescriptions": [
"Notifications are sent to all guests.",
"Notifications are sent to non-Google Calendar guests only.",
"No notifications are sent. This value should only be used for migration use cases (note that in most migration cases the import method should be used)."
],
"location": "query",
"type": "string"
}
},
"path": "calendars/{calendarId}/events/{eventId}/move",
@@ -1187,7 +1253,8 @@
"$ref": "Event"
},
"scopes": [
"https://www.googleapis.com/auth/calendar"
"https://www.googleapis.com/auth/calendar",
"https://www.googleapis.com/auth/calendar.events"
]
},
"patch": {
@@ -1232,10 +1299,25 @@
"type": "integer"
},
"sendNotifications": {
"description": "Whether to send notifications about the event update (e.g. attendee's responses, title changes, etc.). Optional. The default is False.",
"description": "Deprecated. Please use sendUpdates instead.\n\nWhether to send notifications about the event update (for example, description changes, etc.). Note that some emails might still be sent even if you set the value to false. The default is false.",
"location": "query",
"type": "boolean"
},
"sendUpdates": {
"description": "Guests who should receive notifications about the event update (for example, title changes, etc.).",
"enum": [
"all",
"externalOnly",
"none"
],
"enumDescriptions": [
"Notifications are sent to all guests.",
"Notifications are sent to non-Google Calendar guests only.",
"No notifications are sent. This value should only be used for migration use cases (note that in most migration cases the import method should be used)."
],
"location": "query",
"type": "string"
},
"supportsAttachments": {
"description": "Whether API client performing operation supports event attachments. Optional. The default is False.",
"location": "query",
@@ -1250,7 +1332,8 @@
"$ref": "Event"
},
"scopes": [
"https://www.googleapis.com/auth/calendar"
"https://www.googleapis.com/auth/calendar",
"https://www.googleapis.com/auth/calendar.events"
]
},
"quickAdd": {
@@ -1269,10 +1352,25 @@
"type": "string"
},
"sendNotifications": {
"description": "Whether to send notifications about the creation of the event. Optional. The default is False.",
"description": "Deprecated. Please use sendUpdates instead.\n\nWhether to send notifications about the creation of the event. Note that some emails might still be sent even if you set the value to false. The default is false.",
"location": "query",
"type": "boolean"
},
"sendUpdates": {
"description": "Guests who should receive notifications about the creation of the new event.",
"enum": [
"all",
"externalOnly",
"none"
],
"enumDescriptions": [
"Notifications are sent to all guests.",
"Notifications are sent to non-Google Calendar guests only.",
"No notifications are sent. This value should only be used for migration use cases (note that in most migration cases the import method should be used)."
],
"location": "query",
"type": "string"
},
"text": {
"description": "The text describing the event to be created.",
"location": "query",
@@ -1285,7 +1383,8 @@
"$ref": "Event"
},
"scopes": [
"https://www.googleapis.com/auth/calendar"
"https://www.googleapis.com/auth/calendar",
"https://www.googleapis.com/auth/calendar.events"
]
},
"update": {
@@ -1330,10 +1429,25 @@
"type": "integer"
},
"sendNotifications": {
"description": "Whether to send notifications about the event update (e.g. attendee's responses, title changes, etc.). Optional. The default is False.",
"description": "Deprecated. Please use sendUpdates instead.\n\nWhether to send notifications about the event update (for example, description changes, etc.). Note that some emails might still be sent even if you set the value to false. The default is false.",
"location": "query",
"type": "boolean"
},
"sendUpdates": {
"description": "Guests who should receive notifications about the event update (for example, title changes, etc.).",
"enum": [
"all",
"externalOnly",
"none"
],
"enumDescriptions": [
"Notifications are sent to all guests.",
"Notifications are sent to non-Google Calendar guests only.",
"No notifications are sent. This value should only be used for migration use cases (note that in most migration cases the import method should be used)."
],
"location": "query",
"type": "string"
},
"supportsAttachments": {
"description": "Whether API client performing operation supports event attachments. Optional. The default is False.",
"location": "query",
@@ -1348,7 +1462,8 @@
"$ref": "Event"
},
"scopes": [
"https://www.googleapis.com/auth/calendar"
"https://www.googleapis.com/auth/calendar",
"https://www.googleapis.com/auth/calendar.events"
]
},
"watch": {
@@ -1479,6 +1594,8 @@
},
"scopes": [
"https://www.googleapis.com/auth/calendar",
"https://www.googleapis.com/auth/calendar.events",
"https://www.googleapis.com/auth/calendar.events.readonly",
"https://www.googleapis.com/auth/calendar.readonly"
],
"supportsSubscription": true
@@ -1528,7 +1645,8 @@
},
"scopes": [
"https://www.googleapis.com/auth/calendar",
"https://www.googleapis.com/auth/calendar.readonly"
"https://www.googleapis.com/auth/calendar.readonly",
"https://www.googleapis.com/auth/calendar.settings.readonly"
]
},
"list": {
@@ -1560,7 +1678,8 @@
},
"scopes": [
"https://www.googleapis.com/auth/calendar",
"https://www.googleapis.com/auth/calendar.readonly"
"https://www.googleapis.com/auth/calendar.readonly",
"https://www.googleapis.com/auth/calendar.settings.readonly"
],
"supportsSubscription": true
},
@@ -1597,14 +1716,15 @@
},
"scopes": [
"https://www.googleapis.com/auth/calendar",
"https://www.googleapis.com/auth/calendar.readonly"
"https://www.googleapis.com/auth/calendar.readonly",
"https://www.googleapis.com/auth/calendar.settings.readonly"
],
"supportsSubscription": true
}
}
}
},
"revision": "20180814",
"revision": "20181002",
"rootUrl": "https://www.googleapis.com/",
"schemas": {
"Acl": {
@@ -2114,6 +2234,13 @@
"description": "The access code to access the conference. The maximum length is 128 characters.\nWhen creating new conference data, populate only the subset of {meetingCode, accessCode, passcode, password, pin} fields that match the terminology that the conference provider uses. Only the populated fields should be displayed.\nOptional.",
"type": "string"
},
"entryPointFeatures": {
"description": "Features of the entry point, such as being toll or toll-free. One entry point can have multiple features. However, toll and toll-free cannot be both set on the same entry point.",
"items": {
"type": "string"
},
"type": "array"
},
"entryPointType": {
"description": "The type of the conference entry point.\nPossible values are: \n- \"video\" - joining a conference over HTTP. A conference can have zero or one video entry point.\n- \"phone\" - joining a conference by dialing a phone number. A conference can have zero or more phone entry points.\n- \"sip\" - joining a conference over SIP. A conference can have zero or one sip entry point.\n- \"more\" - further conference joining instructions, for example additional phone numbers. A conference can have zero or one more entry point. A conference with only a more entry point is not a valid conference.",
"type": "string"
@@ -2138,6 +2265,10 @@
"description": "The PIN to access the conference. The maximum length is 128 characters.\nWhen creating new conference data, populate only the subset of {meetingCode, accessCode, passcode, password, pin} fields that match the terminology that the conference provider uses. Only the populated fields should be displayed.\nOptional.",
"type": "string"
},
"regionCode": {
"description": "The CLDR/ISO 3166 region code for the country associated with this phone access. Example: \"SE\" for Sweden.\nCalendar backend will populate this field only for EntryPointType.PHONE.",
"type": "string"
},
"uri": {
"description": "The URI of the entry point. The maximum length is 1300 characters.\nFormat: \n- for video, http: or https: schema is required.\n- for phone, tel: schema is required. The URI should include the entire dial sequence (e.g., tel:+12345678900,,,123456789;1234).\n- for sip, sip: schema is required, e.g., sip:12345678@myprovider.com.\n- for more, http: or https: schema is required.",
"type": "string"

File diff suppressed because it is too large Load Diff

View File

@@ -1,4 +1,4 @@
// Copyright 2016 Google Inc. All Rights Reserved.
// Copyright 2016 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.

View File

@@ -1,4 +1,4 @@
// Copyright 2017 Google Inc. All Rights Reserved.
// Copyright 2017 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.

View File

@@ -9605,9 +9605,13 @@ func (c *SpreadsheetsBatchUpdateCall) doRequest(alt string) (*http.Response, err
}
reqHeaders.Set("Content-Type", "application/json")
c.urlParams_.Set("alt", alt)
c.urlParams_.Set("prettyPrint", "false")
urls := googleapi.ResolveRelative(c.s.BasePath, "v4/spreadsheets/{spreadsheetId}:batchUpdate")
urls += "?" + c.urlParams_.Encode()
req, _ := http.NewRequest("POST", urls, body)
req, err := http.NewRequest("POST", urls, body)
if err != nil {
return nil, err
}
req.Header = reqHeaders
googleapi.Expand(req.URL, map[string]string{
"spreadsheetId": c.spreadsheetId,
@@ -9740,9 +9744,13 @@ func (c *SpreadsheetsCreateCall) doRequest(alt string) (*http.Response, error) {
}
reqHeaders.Set("Content-Type", "application/json")
c.urlParams_.Set("alt", alt)
c.urlParams_.Set("prettyPrint", "false")
urls := googleapi.ResolveRelative(c.s.BasePath, "v4/spreadsheets")
urls += "?" + c.urlParams_.Encode()
req, _ := http.NewRequest("POST", urls, body)
req, err := http.NewRequest("POST", urls, body)
if err != nil {
return nil, err
}
req.Header = reqHeaders
return gensupport.SendRequest(c.ctx_, c.s.client, req)
}
@@ -9910,9 +9918,13 @@ func (c *SpreadsheetsGetCall) doRequest(alt string) (*http.Response, error) {
}
var body io.Reader = nil
c.urlParams_.Set("alt", alt)
c.urlParams_.Set("prettyPrint", "false")
urls := googleapi.ResolveRelative(c.s.BasePath, "v4/spreadsheets/{spreadsheetId}")
urls += "?" + c.urlParams_.Encode()
req, _ := http.NewRequest("GET", urls, body)
req, err := http.NewRequest("GET", urls, body)
if err != nil {
return nil, err
}
req.Header = reqHeaders
googleapi.Expand(req.URL, map[string]string{
"spreadsheetId": c.spreadsheetId,
@@ -10083,9 +10095,13 @@ func (c *SpreadsheetsGetByDataFilterCall) doRequest(alt string) (*http.Response,
}
reqHeaders.Set("Content-Type", "application/json")
c.urlParams_.Set("alt", alt)
c.urlParams_.Set("prettyPrint", "false")
urls := googleapi.ResolveRelative(c.s.BasePath, "v4/spreadsheets/{spreadsheetId}:getByDataFilter")
urls += "?" + c.urlParams_.Encode()
req, _ := http.NewRequest("POST", urls, body)
req, err := http.NewRequest("POST", urls, body)
if err != nil {
return nil, err
}
req.Header = reqHeaders
googleapi.Expand(req.URL, map[string]string{
"spreadsheetId": c.spreadsheetId,
@@ -10231,9 +10247,13 @@ func (c *SpreadsheetsDeveloperMetadataGetCall) doRequest(alt string) (*http.Resp
}
var body io.Reader = nil
c.urlParams_.Set("alt", alt)
c.urlParams_.Set("prettyPrint", "false")
urls := googleapi.ResolveRelative(c.s.BasePath, "v4/spreadsheets/{spreadsheetId}/developerMetadata/{metadataId}")
urls += "?" + c.urlParams_.Encode()
req, _ := http.NewRequest("GET", urls, body)
req, err := http.NewRequest("GET", urls, body)
if err != nil {
return nil, err
}
req.Header = reqHeaders
googleapi.Expand(req.URL, map[string]string{
"spreadsheetId": c.spreadsheetId,
@@ -10382,9 +10402,13 @@ func (c *SpreadsheetsDeveloperMetadataSearchCall) doRequest(alt string) (*http.R
}
reqHeaders.Set("Content-Type", "application/json")
c.urlParams_.Set("alt", alt)
c.urlParams_.Set("prettyPrint", "false")
urls := googleapi.ResolveRelative(c.s.BasePath, "v4/spreadsheets/{spreadsheetId}/developerMetadata:search")
urls += "?" + c.urlParams_.Encode()
req, _ := http.NewRequest("POST", urls, body)
req, err := http.NewRequest("POST", urls, body)
if err != nil {
return nil, err
}
req.Header = reqHeaders
googleapi.Expand(req.URL, map[string]string{
"spreadsheetId": c.spreadsheetId,
@@ -10522,9 +10546,13 @@ func (c *SpreadsheetsSheetsCopyToCall) doRequest(alt string) (*http.Response, er
}
reqHeaders.Set("Content-Type", "application/json")
c.urlParams_.Set("alt", alt)
c.urlParams_.Set("prettyPrint", "false")
urls := googleapi.ResolveRelative(c.s.BasePath, "v4/spreadsheets/{spreadsheetId}/sheets/{sheetId}:copyTo")
urls += "?" + c.urlParams_.Encode()
req, _ := http.NewRequest("POST", urls, body)
req, err := http.NewRequest("POST", urls, body)
if err != nil {
return nil, err
}
req.Header = reqHeaders
googleapi.Expand(req.URL, map[string]string{
"spreadsheetId": c.spreadsheetId,
@@ -10753,9 +10781,13 @@ func (c *SpreadsheetsValuesAppendCall) doRequest(alt string) (*http.Response, er
}
reqHeaders.Set("Content-Type", "application/json")
c.urlParams_.Set("alt", alt)
c.urlParams_.Set("prettyPrint", "false")
urls := googleapi.ResolveRelative(c.s.BasePath, "v4/spreadsheets/{spreadsheetId}/values/{range}:append")
urls += "?" + c.urlParams_.Encode()
req, _ := http.NewRequest("POST", urls, body)
req, err := http.NewRequest("POST", urls, body)
if err != nil {
return nil, err
}
req.Header = reqHeaders
googleapi.Expand(req.URL, map[string]string{
"spreadsheetId": c.spreadsheetId,
@@ -10946,9 +10978,13 @@ func (c *SpreadsheetsValuesBatchClearCall) doRequest(alt string) (*http.Response
}
reqHeaders.Set("Content-Type", "application/json")
c.urlParams_.Set("alt", alt)
c.urlParams_.Set("prettyPrint", "false")
urls := googleapi.ResolveRelative(c.s.BasePath, "v4/spreadsheets/{spreadsheetId}/values:batchClear")
urls += "?" + c.urlParams_.Encode()
req, _ := http.NewRequest("POST", urls, body)
req, err := http.NewRequest("POST", urls, body)
if err != nil {
return nil, err
}
req.Header = reqHeaders
googleapi.Expand(req.URL, map[string]string{
"spreadsheetId": c.spreadsheetId,
@@ -11089,9 +11125,13 @@ func (c *SpreadsheetsValuesBatchClearByDataFilterCall) doRequest(alt string) (*h
}
reqHeaders.Set("Content-Type", "application/json")
c.urlParams_.Set("alt", alt)
c.urlParams_.Set("prettyPrint", "false")
urls := googleapi.ResolveRelative(c.s.BasePath, "v4/spreadsheets/{spreadsheetId}/values:batchClearByDataFilter")
urls += "?" + c.urlParams_.Encode()
req, _ := http.NewRequest("POST", urls, body)
req, err := http.NewRequest("POST", urls, body)
if err != nil {
return nil, err
}
req.Header = reqHeaders
googleapi.Expand(req.URL, map[string]string{
"spreadsheetId": c.spreadsheetId,
@@ -11291,9 +11331,13 @@ func (c *SpreadsheetsValuesBatchGetCall) doRequest(alt string) (*http.Response,
}
var body io.Reader = nil
c.urlParams_.Set("alt", alt)
c.urlParams_.Set("prettyPrint", "false")
urls := googleapi.ResolveRelative(c.s.BasePath, "v4/spreadsheets/{spreadsheetId}/values:batchGet")
urls += "?" + c.urlParams_.Encode()
req, _ := http.NewRequest("GET", urls, body)
req, err := http.NewRequest("GET", urls, body)
if err != nil {
return nil, err
}
req.Header = reqHeaders
googleapi.Expand(req.URL, map[string]string{
"spreadsheetId": c.spreadsheetId,
@@ -11466,9 +11510,13 @@ func (c *SpreadsheetsValuesBatchGetByDataFilterCall) doRequest(alt string) (*htt
}
reqHeaders.Set("Content-Type", "application/json")
c.urlParams_.Set("alt", alt)
c.urlParams_.Set("prettyPrint", "false")
urls := googleapi.ResolveRelative(c.s.BasePath, "v4/spreadsheets/{spreadsheetId}/values:batchGetByDataFilter")
urls += "?" + c.urlParams_.Encode()
req, _ := http.NewRequest("POST", urls, body)
req, err := http.NewRequest("POST", urls, body)
if err != nil {
return nil, err
}
req.Header = reqHeaders
googleapi.Expand(req.URL, map[string]string{
"spreadsheetId": c.spreadsheetId,
@@ -11606,9 +11654,13 @@ func (c *SpreadsheetsValuesBatchUpdateCall) doRequest(alt string) (*http.Respons
}
reqHeaders.Set("Content-Type", "application/json")
c.urlParams_.Set("alt", alt)
c.urlParams_.Set("prettyPrint", "false")
urls := googleapi.ResolveRelative(c.s.BasePath, "v4/spreadsheets/{spreadsheetId}/values:batchUpdate")
urls += "?" + c.urlParams_.Encode()
req, _ := http.NewRequest("POST", urls, body)
req, err := http.NewRequest("POST", urls, body)
if err != nil {
return nil, err
}
req.Header = reqHeaders
googleapi.Expand(req.URL, map[string]string{
"spreadsheetId": c.spreadsheetId,
@@ -11746,9 +11798,13 @@ func (c *SpreadsheetsValuesBatchUpdateByDataFilterCall) doRequest(alt string) (*
}
reqHeaders.Set("Content-Type", "application/json")
c.urlParams_.Set("alt", alt)
c.urlParams_.Set("prettyPrint", "false")
urls := googleapi.ResolveRelative(c.s.BasePath, "v4/spreadsheets/{spreadsheetId}/values:batchUpdateByDataFilter")
urls += "?" + c.urlParams_.Encode()
req, _ := http.NewRequest("POST", urls, body)
req, err := http.NewRequest("POST", urls, body)
if err != nil {
return nil, err
}
req.Header = reqHeaders
googleapi.Expand(req.URL, map[string]string{
"spreadsheetId": c.spreadsheetId,
@@ -11889,9 +11945,13 @@ func (c *SpreadsheetsValuesClearCall) doRequest(alt string) (*http.Response, err
}
reqHeaders.Set("Content-Type", "application/json")
c.urlParams_.Set("alt", alt)
c.urlParams_.Set("prettyPrint", "false")
urls := googleapi.ResolveRelative(c.s.BasePath, "v4/spreadsheets/{spreadsheetId}/values/{range}:clear")
urls += "?" + c.urlParams_.Encode()
req, _ := http.NewRequest("POST", urls, body)
req, err := http.NewRequest("POST", urls, body)
if err != nil {
return nil, err
}
req.Header = reqHeaders
googleapi.Expand(req.URL, map[string]string{
"spreadsheetId": c.spreadsheetId,
@@ -12092,9 +12152,13 @@ func (c *SpreadsheetsValuesGetCall) doRequest(alt string) (*http.Response, error
}
var body io.Reader = nil
c.urlParams_.Set("alt", alt)
c.urlParams_.Set("prettyPrint", "false")
urls := googleapi.ResolveRelative(c.s.BasePath, "v4/spreadsheets/{spreadsheetId}/values/{range}")
urls += "?" + c.urlParams_.Encode()
req, _ := http.NewRequest("GET", urls, body)
req, err := http.NewRequest("GET", urls, body)
if err != nil {
return nil, err
}
req.Header = reqHeaders
googleapi.Expand(req.URL, map[string]string{
"spreadsheetId": c.spreadsheetId,
@@ -12327,9 +12391,13 @@ func (c *SpreadsheetsValuesUpdateCall) doRequest(alt string) (*http.Response, er
}
reqHeaders.Set("Content-Type", "application/json")
c.urlParams_.Set("alt", alt)
c.urlParams_.Set("prettyPrint", "false")
urls := googleapi.ResolveRelative(c.s.BasePath, "v4/spreadsheets/{spreadsheetId}/values/{range}")
urls += "?" + c.urlParams_.Encode()
req, _ := http.NewRequest("PUT", urls, body)
req, err := http.NewRequest("PUT", urls, body)
if err != nil {
return nil, err
}
req.Header = reqHeaders
googleapi.Expand(req.URL, map[string]string{
"spreadsheetId": c.spreadsheetId,