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

@ -50,11 +50,6 @@
"location": "query",
"type": "string"
},
"bearer_token": {
"description": "OAuth bearer token.",
"location": "query",
"type": "string"
},
"callback": {
"description": "JSONP",
"location": "query",
@ -75,12 +70,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.",
@ -747,7 +736,7 @@
}
}
},
"revision": "20180413",
"revision": "20180604",
"rootUrl": "https://androiddeviceprovisioning.googleapis.com/",
"schemas": {
"ClaimDeviceRequest": {
@ -838,6 +827,22 @@
"type": "string"
},
"type": "array"
},
"termsStatus": {
"description": "Output only. Whether any user from the company has accepted the latest\nTerms of Service (ToS). See\nTermsStatus.",
"enum": [
"TERMS_STATUS_UNSPECIFIED",
"TERMS_STATUS_NOT_ACCEPTED",
"TERMS_STATUS_ACCEPTED",
"TERMS_STATUS_STALE"
],
"enumDescriptions": [
"Default value. This value should never be set if the enum is present.",
"None of the company's users have accepted the ToS.",
"One (or more) of the company's users has accepted the ToS.",
"None of the company's users has accepted the current ToS but at least one\nuser accepted a previous ToS."
],
"type": "string"
}
},
"type": "object"

View File

@ -307,6 +307,23 @@ type Company struct {
// delete, and edit your organization's portal users.
OwnerEmails []string `json:"ownerEmails,omitempty"`
// TermsStatus: Output only. Whether any user from the company has
// accepted the latest
// Terms of Service (ToS). See
// TermsStatus.
//
// Possible values:
// "TERMS_STATUS_UNSPECIFIED" - Default value. This value should never
// be set if the enum is present.
// "TERMS_STATUS_NOT_ACCEPTED" - None of the company's users have
// accepted the ToS.
// "TERMS_STATUS_ACCEPTED" - One (or more) of the company's users has
// accepted the ToS.
// "TERMS_STATUS_STALE" - None of the company's users has accepted the
// current ToS but at least one
// user accepted a previous ToS.
TermsStatus string `json:"termsStatus,omitempty"`
// ServerResponse contains the HTTP response code and headers from the
// server.
googleapi.ServerResponse `json:"-"`