1
0
mirror of https://github.com/rclone/rclone.git synced 2025-12-27 05:33:17 +00:00

vendor: update all dependencies

* Update all dependencies
  * Remove all `[[constraint]]` from Gopkg.toml
  * Add in the minimum number of `[[override]]` to build
  * Remove go get of github.com/inconshreveable/mousetrap as it is vendored
  * Update docs with new policy on constraints
This commit is contained in:
Nick Craig-Wood
2018-05-02 17:09:45 +01:00
parent 21383877df
commit 6427029c4e
4902 changed files with 1443417 additions and 227283 deletions

View File

@@ -1554,7 +1554,7 @@
}
}
},
"revision": "20180314",
"revision": "20180413",
"rootUrl": "https://dataflow.googleapis.com/",
"schemas": {
"ApproximateProgress": {
@@ -1658,6 +1658,10 @@
"description": "The time this event was emitted to indicate a new target or current\nnum_workers value.",
"format": "google-datetime",
"type": "string"
},
"workerPool": {
"description": "A short and friendly name for the worker pool this event refers to,\npopulated from the value of PoolStageRelation::user_pool_name.",
"type": "string"
}
},
"type": "object"
@@ -3146,6 +3150,10 @@
"description": "A struct value describing properties of a distribution of numeric values.",
"type": "any"
},
"gauge": {
"description": "A struct value describing properties of a Gauge.\nMetrics of gauge type show the value of a metric across time, and is\naggregated based on the newest value.",
"type": "any"
},
"internal": {
"description": "Worker-computed aggregate value for internal use by the Dataflow\nservice.",
"type": "any"

View File

@@ -476,6 +476,11 @@ type AutoscalingEvent struct {
// num_workers value.
Time string `json:"time,omitempty"`
// WorkerPool: A short and friendly name for the worker pool this event
// refers to,
// populated from the value of PoolStageRelation::user_pool_name.
WorkerPool string `json:"workerPool,omitempty"`
// ForceSendFields is a list of field names (e.g. "CurrentNumWorkers")
// to unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
@@ -3141,6 +3146,12 @@ type MetricUpdate struct {
// of numeric values.
Distribution interface{} `json:"distribution,omitempty"`
// Gauge: A struct value describing properties of a Gauge.
// Metrics of gauge type show the value of a metric across time, and
// is
// aggregated based on the newest value.
Gauge interface{} `json:"gauge,omitempty"`
// Internal: Worker-computed aggregate value for internal use by the
// Dataflow
// service.