vendor: update all dependencies

This commit is contained in:
Nick Craig-Wood
2017-07-23 08:51:42 +01:00
parent 0b6fba34a3
commit eb87cf6f12
2008 changed files with 352633 additions and 1004750 deletions

View File

@ -1,12 +1,12 @@
{
"kind": "discovery#restDescription",
"etag": "\"YWOzh2SDasdU84ArJnpYek-OMdg/Hgzlsu38y56tOKi_wO3_mjV37MM\"",
"etag": "\"YWOzh2SDasdU84ArJnpYek-OMdg/976YNPTJkb16sYg_Lp8esJdwsGQ\"",
"discoveryVersion": "v1",
"id": "admin:directory_v1",
"name": "admin",
"canonicalName": "directory",
"version": "directory_v1",
"revision": "20170419",
"revision": "20170530",
"title": "Admin Directory API",
"description": "The Admin SDK Directory API lets you view and manage enterprise resources such as users and groups, administrative notifications, security features, and more.",
"ownerDomain": "google.com",
@ -1874,6 +1874,9 @@
"default": "admin#directory#user",
"readOnly": true
},
"languages": {
"type": "any"
},
"lastLoginTime": {
"type": "string",
"description": "User's last login time. (Read-only)",
@ -2119,6 +2122,21 @@
}
}
},
"UserLanguage": {
"id": "UserLanguage",
"type": "object",
"description": "JSON template for a language entry.",
"properties": {
"customLanguage": {
"type": "string",
"description": "Other language. User can provide own language name if there is no corresponding Google III language code. If this is set LanguageCode can't be set"
},
"languageCode": {
"type": "string",
"description": "Language Code. Should be used for storing Google III LanguageCode string representation for language. Illegal values cause SchemaException."
}
}
},
"UserLocation": {
"id": "UserLocation",
"type": "object",
@ -2126,7 +2144,7 @@
"properties": {
"area": {
"type": "string",
"description": "Textual location. This is most useful for display purposes to concisely describe the location. E.g. \"Mountain View, CA\", \"Near Seattle\", \"US-NYC-9TH 9A209A\"."
"description": "Textual location. This is most useful for display purposes to concisely describe the location. For example, \"Mountain View, CA\", \"Near Seattle\", \"US-NYC-9TH 9A209A\"."
},
"buildingId": {
"type": "string",
@ -2146,7 +2164,7 @@
},
"floorSection": {
"type": "string",
"description": "Floor Section. More specific location within the floor. E.g. if a floor is divided into sections \"A\", \"B\", and \"C\", this field would identify one of those values."
"description": "Floor section. More specific location within the floor. For example, if a floor is divided into sections \"A\", \"B\", and \"C\", this field would identify one of those values."
},
"type": {
"type": "string",
@ -2224,6 +2242,11 @@
"type": "string",
"description": "The domain to which the organization belongs to."
},
"fullTimeEquivalent": {
"type": "integer",
"description": "The full-time equivalent percent within the organization (100000 = 100%).",
"format": "int32"
},
"location": {
"type": "string",
"description": "Location of the organization. This need not be fully qualified address."
@ -2740,6 +2763,11 @@
],
"location": "query"
},
"orgUnitPath": {
"type": "string",
"description": "Full path of the organization unit or its Id",
"location": "query"
},
"pageToken": {
"type": "string",
"description": "Token to specify next page in the list",

View File

@ -2655,6 +2655,8 @@ type User struct {
// Kind: Kind of resource this is.
Kind string `json:"kind,omitempty"`
Languages interface{} `json:"languages,omitempty"`
// LastLoginTime: User's last login time. (Read-only)
LastLoginTime string `json:"lastLoginTime,omitempty"`
@ -2960,11 +2962,47 @@ func (s *UserIm) MarshalJSON() ([]byte, error) {
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// UserLanguage: JSON template for a language entry.
type UserLanguage struct {
// CustomLanguage: Other language. User can provide own language name if
// there is no corresponding Google III language code. If this is set
// LanguageCode can't be set
CustomLanguage string `json:"customLanguage,omitempty"`
// LanguageCode: Language Code. Should be used for storing Google III
// LanguageCode string representation for language. Illegal values cause
// SchemaException.
LanguageCode string `json:"languageCode,omitempty"`
// ForceSendFields is a list of field names (e.g. "CustomLanguage") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "CustomLanguage") to
// include in API requests with the JSON null value. By default, fields
// with empty values are omitted from API requests. However, any field
// with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *UserLanguage) MarshalJSON() ([]byte, error) {
type noMethod UserLanguage
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// UserLocation: JSON template for a location entry.
type UserLocation struct {
// Area: Textual location. This is most useful for display purposes to
// concisely describe the location. E.g. "Mountain View, CA", "Near
// Seattle", "US-NYC-9TH 9A209A".
// concisely describe the location. For example, "Mountain View, CA",
// "Near Seattle", "US-NYC-9TH 9A209A".
Area string `json:"area,omitempty"`
// BuildingId: Building Identifier.
@ -2979,9 +3017,9 @@ type UserLocation struct {
// FloorName: Floor name/number.
FloorName string `json:"floorName,omitempty"`
// FloorSection: Floor Section. More specific location within the floor.
// E.g. if a floor is divided into sections "A", "B", and "C", this
// field would identify one of those values.
// FloorSection: Floor section. More specific location within the floor.
// For example, if a floor is divided into sections "A", "B", and "C",
// this field would identify one of those values.
FloorSection string `json:"floorSection,omitempty"`
// Type: Each entry can have a type which indicates standard types of
@ -3094,6 +3132,10 @@ type UserOrganization struct {
// Domain: The domain to which the organization belongs to.
Domain string `json:"domain,omitempty"`
// FullTimeEquivalent: The full-time equivalent percent within the
// organization (100000 = 100%).
FullTimeEquivalent int64 `json:"fullTimeEquivalent,omitempty"`
// Location: Location of the organization. This need not be fully
// qualified address.
Location string `json:"location,omitempty"`
@ -4366,6 +4408,13 @@ func (c *ChromeosdevicesListCall) OrderBy(orderBy string) *ChromeosdevicesListCa
return c
}
// OrgUnitPath sets the optional parameter "orgUnitPath": Full path of
// the organization unit or its Id
func (c *ChromeosdevicesListCall) OrgUnitPath(orgUnitPath string) *ChromeosdevicesListCall {
c.urlParams_.Set("orgUnitPath", orgUnitPath)
return c
}
// PageToken sets the optional parameter "pageToken": Token to specify
// next page in the list
func (c *ChromeosdevicesListCall) PageToken(pageToken string) *ChromeosdevicesListCall {
@ -4542,6 +4591,11 @@ func (c *ChromeosdevicesListCall) Do(opts ...googleapi.CallOption) (*ChromeOsDev
// "location": "query",
// "type": "string"
// },
// "orgUnitPath": {
// "description": "Full path of the organization unit or its Id",
// "location": "query",
// "type": "string"
// },
// "pageToken": {
// "description": "Token to specify next page in the list",
// "location": "query",