mirror of
https://github.com/OMGeeky/google-apis-rs.git
synced 2026-01-06 03:22:42 +01:00
fix(rustup): rustc (be9bd7c93 2015-04-05)
* using std::convert * update to latest hyper (and other dependencies) Related to #46
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
{
|
||||
"kind": "discovery#restDescription",
|
||||
"etag": "\"ye6orv2F-1npMW3u9suM3a7C5Bo/p23x-gNsMm8R6x-RDoeYGjGvTE0\"",
|
||||
"etag": "\"ye6orv2F-1npMW3u9suM3a7C5Bo/KNSekumf7PpoDBHVIPOg6YU25sY\"",
|
||||
"discoveryVersion": "v1",
|
||||
"id": "dataflow:v1beta3",
|
||||
"name": "dataflow",
|
||||
"version": "v1beta3",
|
||||
"revision": "20150130",
|
||||
"revision": "20150401",
|
||||
"title": "Google Dataflow API",
|
||||
"description": "Google Dataflow API.",
|
||||
"ownerDomain": "google.com",
|
||||
@@ -160,6 +160,30 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"DerivedSource": {
|
||||
"id": "DerivedSource",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"derivationMode": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"SOURCE_DERIVATION_MODE_CHILD_OF_CURRENT",
|
||||
"SOURCE_DERIVATION_MODE_INDEPENDENT",
|
||||
"SOURCE_DERIVATION_MODE_SIBLING_OF_CURRENT",
|
||||
"SOURCE_DERIVATION_MODE_UNKNOWN"
|
||||
],
|
||||
"enumDescriptions": [
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
""
|
||||
]
|
||||
},
|
||||
"source": {
|
||||
"$ref": "Source"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Disk": {
|
||||
"id": "Disk",
|
||||
"type": "object",
|
||||
@@ -176,6 +200,18 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"DynamicSourceSplit": {
|
||||
"id": "DynamicSourceSplit",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"primary": {
|
||||
"$ref": "DerivedSource"
|
||||
},
|
||||
"residual": {
|
||||
"$ref": "DerivedSource"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Environment": {
|
||||
"id": "Environment",
|
||||
"type": "object",
|
||||
@@ -421,6 +457,21 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"KeyRangeDataDiskAssignment": {
|
||||
"id": "KeyRangeDataDiskAssignment",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"dataDisk": {
|
||||
"type": "string"
|
||||
},
|
||||
"end": {
|
||||
"type": "string"
|
||||
},
|
||||
"start": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"KeyRangeLocation": {
|
||||
"id": "KeyRangeLocation",
|
||||
"type": "object",
|
||||
@@ -580,6 +631,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"MountedDataDisk": {
|
||||
"id": "MountedDataDisk",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"dataDisk": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"MultiOutputInfo": {
|
||||
"id": "MultiOutputInfo",
|
||||
"type": "object",
|
||||
@@ -677,6 +737,12 @@
|
||||
"additionalProperties": {
|
||||
"type": "any"
|
||||
}
|
||||
},
|
||||
"valueCombiningFn": {
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
"type": "any"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -721,6 +787,9 @@
|
||||
},
|
||||
"topic": {
|
||||
"type": "string"
|
||||
},
|
||||
"trackingSubscription": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -900,8 +969,14 @@
|
||||
"primary": {
|
||||
"$ref": "SourceSplitShard"
|
||||
},
|
||||
"primarySource": {
|
||||
"$ref": "DerivedSource"
|
||||
},
|
||||
"residual": {
|
||||
"$ref": "SourceSplitShard"
|
||||
},
|
||||
"residualSource": {
|
||||
"$ref": "DerivedSource"
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -967,6 +1042,10 @@
|
||||
"id": "SourceSplitOptions",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"desiredBundleSizeBytes": {
|
||||
"type": "string",
|
||||
"format": "int64"
|
||||
},
|
||||
"desiredShardSizeBytes": {
|
||||
"type": "string",
|
||||
"format": "int64"
|
||||
@@ -989,6 +1068,12 @@
|
||||
"id": "SourceSplitResponse",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"bundles": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "DerivedSource"
|
||||
}
|
||||
},
|
||||
"outcome": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
@@ -1081,11 +1166,60 @@
|
||||
"pubsubLocation": {
|
||||
"$ref": "PubsubLocation"
|
||||
},
|
||||
"sideInputLocation": {
|
||||
"$ref": "StreamingSideInputLocation"
|
||||
},
|
||||
"streamingStageLocation": {
|
||||
"$ref": "StreamingStageLocation"
|
||||
}
|
||||
}
|
||||
},
|
||||
"StreamingComputationRanges": {
|
||||
"id": "StreamingComputationRanges",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"computationId": {
|
||||
"type": "string"
|
||||
},
|
||||
"rangeAssignments": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "KeyRangeDataDiskAssignment"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"StreamingComputationTask": {
|
||||
"id": "StreamingComputationTask",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"computationRanges": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "StreamingComputationRanges"
|
||||
}
|
||||
},
|
||||
"dataDisks": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "MountedDataDisk"
|
||||
}
|
||||
},
|
||||
"taskType": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"STREAMING_COMPUTATION_TASK_START",
|
||||
"STREAMING_COMPUTATION_TASK_STOP",
|
||||
"STREAMING_COMPUTATION_TASK_UNKNOWN"
|
||||
],
|
||||
"enumDescriptions": [
|
||||
"",
|
||||
"",
|
||||
""
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"StreamingSetupTask": {
|
||||
"id": "StreamingSetupTask",
|
||||
"type": "object",
|
||||
@@ -1103,6 +1237,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"StreamingSideInputLocation": {
|
||||
"id": "StreamingSideInputLocation",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"tag": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"StreamingStageLocation": {
|
||||
"id": "StreamingStageLocation",
|
||||
"type": "object",
|
||||
@@ -1207,6 +1350,10 @@
|
||||
"type": "string",
|
||||
"format": "int64"
|
||||
},
|
||||
"initialReportIndex": {
|
||||
"type": "string",
|
||||
"format": "int64"
|
||||
},
|
||||
"jobId": {
|
||||
"type": "string"
|
||||
},
|
||||
@@ -1237,6 +1384,9 @@
|
||||
"sourceOperationTask": {
|
||||
"$ref": "SourceOperationRequest"
|
||||
},
|
||||
"streamingComputationTask": {
|
||||
"$ref": "StreamingComputationTask"
|
||||
},
|
||||
"streamingSetupTask": {
|
||||
"$ref": "StreamingSetupTask"
|
||||
}
|
||||
@@ -1255,6 +1405,10 @@
|
||||
"leaseExpireTime": {
|
||||
"type": "string"
|
||||
},
|
||||
"nextReportIndex": {
|
||||
"type": "string",
|
||||
"format": "int64"
|
||||
},
|
||||
"reportStatusInterval": {
|
||||
"type": "string"
|
||||
},
|
||||
@@ -1273,6 +1427,9 @@
|
||||
"completed": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"dynamicSourceSplit": {
|
||||
"$ref": "DynamicSourceSplit"
|
||||
},
|
||||
"errors": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
@@ -1369,6 +1526,12 @@
|
||||
"$ref": "Package"
|
||||
}
|
||||
},
|
||||
"poolArgs": {
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
"type": "any"
|
||||
}
|
||||
},
|
||||
"taskrunnerSettings": {
|
||||
"$ref": "TaskRunnerSettings"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user