update thrift, opencensus, others (#893)

* update thrift, opencensus, others

* stats: update to opencensus 0.6.0 view api
This commit is contained in:
Reed Allman
2018-03-26 15:43:49 -07:00
committed by GitHub
parent 0ce5c4500b
commit 8af605cf3d
1266 changed files with 122191 additions and 28775 deletions

View File

@@ -766,7 +766,7 @@
}
}
},
"revision": "20180220",
"revision": "20180305",
"rootUrl": "https://androidmanagement.googleapis.com/",
"schemas": {
"AlwaysOnVpnPackage": {
@@ -986,6 +986,10 @@
"Reboot the device. Only supported on API level 24+."
],
"type": "string"
},
"userName": {
"description": "The resource name of the user that owns the device in the form enterprises/{enterpriseId}/users/{userId}. This is automatically generated by the server based on the device the command is sent to.",
"type": "string"
}
},
"type": "object"
@@ -2106,6 +2110,24 @@
},
"type": "array"
},
"appAutoUpdatePolicy": {
"description": "The auto update policy value. Specifies whether the user is given a choice to configure the app update policy, or otherwise contains the enforced update policy",
"enum": [
"APP_AUTO_UPDATE_POLICY_UNSPECIFIED",
"CHOICE_TO_THE_USER",
"NEVER",
"WIFI_ONLY",
"ALWAYS"
],
"enumDescriptions": [
"The auto-update policy is not set. Same as giving auto-update policy choice to the user.",
"The user can control auto-updates.",
"Apps are never auto-updated.",
"Apps are auto-updated over Wi-Fi only.",
"Apps are auto-updated at any time. Data charges may apply."
],
"type": "string"
},
"applications": {
"description": "Policy applied to apps.",
"items": {

View File

@@ -455,6 +455,11 @@ type Command struct {
// "REBOOT" - Reboot the device. Only supported on API level 24+.
Type string `json:"type,omitempty"`
// UserName: The resource name of the user that owns the device in the
// form enterprises/{enterpriseId}/users/{userId}. This is automatically
// generated by the server based on the device the command is sent to.
UserName string `json:"userName,omitempty"`
// ForceSendFields is a list of field names (e.g. "CreateTime") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
@@ -1954,6 +1959,20 @@ type Policy struct {
// "BETA" - The beta track, which provides the latest beta release.
AndroidDevicePolicyTracks []string `json:"androidDevicePolicyTracks,omitempty"`
// AppAutoUpdatePolicy: The auto update policy value. Specifies whether
// the user is given a choice to configure the app update policy, or
// otherwise contains the enforced update policy
//
// Possible values:
// "APP_AUTO_UPDATE_POLICY_UNSPECIFIED" - The auto-update policy is
// not set. Same as giving auto-update policy choice to the user.
// "CHOICE_TO_THE_USER" - The user can control auto-updates.
// "NEVER" - Apps are never auto-updated.
// "WIFI_ONLY" - Apps are auto-updated over Wi-Fi only.
// "ALWAYS" - Apps are auto-updated at any time. Data charges may
// apply.
AppAutoUpdatePolicy string `json:"appAutoUpdatePolicy,omitempty"`
// Applications: Policy applied to apps.
Applications []*ApplicationPolicy `json:"applications,omitempty"`