vendor: update all dependencies

This commit is contained in:
Nick Craig-Wood
2018-06-17 17:59:12 +01:00
parent 3f0789e2db
commit 08021c4636
2474 changed files with 435818 additions and 282709 deletions

View File

@ -17,6 +17,9 @@
"https://www.googleapis.com/auth/admin.directory.user": {
"description": "View and manage the provisioning of users on your domain"
},
"https://www.googleapis.com/auth/documents": {
"description": "View and manage your Google Docs documents"
},
"https://www.googleapis.com/auth/drive": {
"description": "View and manage the files in your Google Drive"
},
@ -90,11 +93,6 @@
"location": "query",
"type": "string"
},
"bearer_token": {
"description": "OAuth bearer token.",
"location": "query",
"type": "string"
},
"callback": {
"description": "JSONP",
"location": "query",
@ -115,12 +113,6 @@
"location": "query",
"type": "string"
},
"pp": {
"default": "true",
"description": "Pretty-print response.",
"location": "query",
"type": "boolean"
},
"prettyPrint": {
"default": "true",
"description": "Returns response with indentations and line breaks.",
@ -223,7 +215,9 @@
"TIME_DRIVEN",
"TRIGGER",
"WEBAPP",
"EDITOR"
"EDITOR",
"SIMPLE_TRIGGER",
"MENU"
],
"location": "query",
"repeated": true,
@ -319,7 +313,9 @@
"TIME_DRIVEN",
"TRIGGER",
"WEBAPP",
"EDITOR"
"EDITOR",
"SIMPLE_TRIGGER",
"MENU"
],
"location": "query",
"repeated": true,
@ -742,6 +738,7 @@
"https://www.google.com/m8/feeds",
"https://www.googleapis.com/auth/admin.directory.group",
"https://www.googleapis.com/auth/admin.directory.user",
"https://www.googleapis.com/auth/documents",
"https://www.googleapis.com/auth/drive",
"https://www.googleapis.com/auth/forms",
"https://www.googleapis.com/auth/forms.currentonly",
@ -753,7 +750,7 @@
}
}
},
"revision": "20180501",
"revision": "20180601",
"rootUrl": "https://script.googleapis.com/",
"schemas": {
"Content": {
@ -1151,7 +1148,9 @@
"TIME_DRIVEN",
"TRIGGER",
"WEBAPP",
"EDITOR"
"EDITOR",
"SIMPLE_TRIGGER",
"MENU"
],
"enumDescriptions": [
"Unspecified type.",
@ -1160,7 +1159,9 @@
"The process was started from a time-based trigger.",
"The process was started from an event-based trigger.",
"The process was started from a web app entry point.",
"The process was started using the Apps Script IDE."
"The process was started using the Apps Script IDE.",
"The process was started from a GSuite simple trigger.",
"The process was started from a GSuite menu item."
],
"type": "string"
},
@ -1433,7 +1434,7 @@
"type": "object"
},
"Operation": {
"description": "A representation of a execution of an Apps Script function that is started using run. The execution response does not arrive until the function finishes executing. The maximum execution runtime is listed in the [Apps Script quotas guide](/apps-script/guides/services/quotas#current_limitations). \u003cp\u003eAfter the execution is started, it can have one of four outcomes:\u003c/p\u003e \u003cul\u003e \u003cli\u003e If the script function returns successfully, the\n response field contains an\n ExecutionResponse object\n with the function's return value in the object's `result` field.\u003c/li\u003e\n\u003cli\u003e If the script function (or Apps Script itself) throws an exception, the\n error field contains a\n Status object. The `Status` object's `details`\n field contains an array with a single\n ExecutionError object that\n provides information about the nature of the error.\u003c/li\u003e\n\u003cli\u003e If the execution has not yet completed,\n the done field is `false` and\n the neither the `response` nor `error` fields are present.\u003c/li\u003e\n\u003cli\u003e If the `run` call itself fails (for example, because of a\n malformed request or an authorization error), the method returns an HTTP\n response code in the 4XX range with a different format for the response\n body. Client libraries automatically convert a 4XX response into an\n exception class.\u003c/li\u003e\n\u003c/ul\u003e",
"description": "A representation of an execution of an Apps Script function started with run. The execution response does not arrive until the function finishes executing. The maximum execution runtime is listed in the [Apps Script quotas guide](/apps-script/guides/services/quotas#current_limitations). \u003cp\u003eAfter execution has started, it can have one of four outcomes:\u003c/p\u003e \u003cul\u003e \u003cli\u003e If the script function returns successfully, the\n response field contains an\n ExecutionResponse object\n with the function's return value in the object's `result` field.\u003c/li\u003e\n\u003cli\u003e If the script function (or Apps Script itself) throws an exception, the\n error field contains a\n Status object. The `Status` object's `details`\n field contains an array with a single\n ExecutionError object that\n provides information about the nature of the error.\u003c/li\u003e\n\u003cli\u003e If the execution has not yet completed,\n the done field is `false` and\n the neither the `response` nor `error` fields are present.\u003c/li\u003e\n\u003cli\u003e If the `run` call itself fails (for example, because of a\n malformed request or an authorization error), the method returns an HTTP\n response code in the 4XX range with a different format for the response\n body. Client libraries automatically convert a 4XX response into an\n exception class.\u003c/li\u003e\n\u003c/ul\u003e",
"id": "Operation",
"properties": {
"done": {
@ -1529,7 +1530,7 @@
"type": "array"
},
"message": {
"description": "A developer-facing error message, which is in English. Any user-facing error message is localized and sent in the [google.rpc.Status.details](google.rpc.Status.details) field, or localized by the client.",
"description": "A developer-facing error message, which is in English. Any user-facing error message is localized and sent in the details field, or localized by the client.",
"type": "string"
}
},

View File

@ -62,6 +62,9 @@ const (
// View and manage the provisioning of users on your domain
AdminDirectoryUserScope = "https://www.googleapis.com/auth/admin.directory.user"
// View and manage your Google Docs documents
DocumentsScope = "https://www.googleapis.com/auth/documents"
// View and manage the files in your Google Drive
DriveScope = "https://www.googleapis.com/auth/drive"
@ -848,6 +851,9 @@ type GoogleAppsScriptTypeProcess struct {
// "TRIGGER" - The process was started from an event-based trigger.
// "WEBAPP" - The process was started from a web app entry point.
// "EDITOR" - The process was started using the Apps Script IDE.
// "SIMPLE_TRIGGER" - The process was started from a GSuite simple
// trigger.
// "MENU" - The process was started from a GSuite menu item.
ProcessType string `json:"processType,omitempty"`
// ProjectName: Name of the script being executed.
@ -1300,14 +1306,13 @@ func (s *MetricsValue) MarshalJSON() ([]byte, error) {
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// Operation: A representation of a execution of an Apps Script function
// that is started using run. The execution response does not arrive
// Operation: A representation of an execution of an Apps Script
// function started with run. The execution response does not arrive
// until the function finishes executing. The maximum execution runtime
// is listed in the [Apps Script quotas
// guide](/apps-script/guides/services/quotas#current_limitations).
// <p>After the execution is started, it can have one of four
// outcomes:</p> <ul> <li> If the script function returns successfully,
// the
// <p>After execution has started, it can have one of four outcomes:</p>
// <ul> <li> If the script function returns successfully, the
// response field contains an
// ExecutionResponse object
// with the function's return value in the object's `result`
@ -1478,9 +1483,8 @@ type Status struct {
Details []googleapi.RawMessage `json:"details,omitempty"`
// Message: A developer-facing error message, which is in English. Any
// user-facing error message is localized and sent in the
// [google.rpc.Status.details](google.rpc.Status.details) field, or
// localized by the client.
// user-facing error message is localized and sent in the details field,
// or localized by the client.
Message string `json:"message,omitempty"`
// ForceSendFields is a list of field names (e.g. "Code") to
@ -1706,6 +1710,8 @@ func (c *ProcessesListCall) UserProcessFilterStatuses(userProcessFilterStatuses
// "TRIGGER"
// "WEBAPP"
// "EDITOR"
// "SIMPLE_TRIGGER"
// "MENU"
func (c *ProcessesListCall) UserProcessFilterTypes(userProcessFilterTypes ...string) *ProcessesListCall {
c.urlParams_.SetMulti("userProcessFilter.types", append([]string{}, userProcessFilterTypes...))
return c
@ -1893,7 +1899,9 @@ func (c *ProcessesListCall) Do(opts ...googleapi.CallOption) (*ListUserProcesses
// "TIME_DRIVEN",
// "TRIGGER",
// "WEBAPP",
// "EDITOR"
// "EDITOR",
// "SIMPLE_TRIGGER",
// "MENU"
// ],
// "location": "query",
// "repeated": true,
@ -2053,6 +2061,8 @@ func (c *ProcessesListScriptProcessesCall) ScriptProcessFilterStatuses(scriptPro
// "TRIGGER"
// "WEBAPP"
// "EDITOR"
// "SIMPLE_TRIGGER"
// "MENU"
func (c *ProcessesListScriptProcessesCall) ScriptProcessFilterTypes(scriptProcessFilterTypes ...string) *ProcessesListScriptProcessesCall {
c.urlParams_.SetMulti("scriptProcessFilter.types", append([]string{}, scriptProcessFilterTypes...))
return c
@ -2235,7 +2245,9 @@ func (c *ProcessesListScriptProcessesCall) Do(opts ...googleapi.CallOption) (*Li
// "TIME_DRIVEN",
// "TRIGGER",
// "WEBAPP",
// "EDITOR"
// "EDITOR",
// "SIMPLE_TRIGGER",
// "MENU"
// ],
// "location": "query",
// "repeated": true,
@ -4341,6 +4353,7 @@ func (c *ScriptsRunCall) Do(opts ...googleapi.CallOption) (*Operation, error) {
// "https://www.google.com/m8/feeds",
// "https://www.googleapis.com/auth/admin.directory.group",
// "https://www.googleapis.com/auth/admin.directory.user",
// "https://www.googleapis.com/auth/documents",
// "https://www.googleapis.com/auth/drive",
// "https://www.googleapis.com/auth/forms",
// "https://www.googleapis.com/auth/forms.currentonly",