Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(181)

Side by Side Diff: discovery/googleapis_beta/toolresults__v1beta3.json

Issue 2936613002: Api-Roll 50: 2017-06-12 (Closed)
Patch Set: Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 { 1 {
2 "auth": { 2 "auth": {
3 "oauth2": { 3 "oauth2": {
4 "scopes": { 4 "scopes": {
5 "https://www.googleapis.com/auth/cloud-platform": { 5 "https://www.googleapis.com/auth/cloud-platform": {
6 "description": "View and manage your data across Google Clou d Platform services" 6 "description": "View and manage your data across Google Clou d Platform services"
7 } 7 }
8 } 8 }
9 } 9 }
10 }, 10 },
11 "basePath": "/toolresults/v1beta3/projects/", 11 "basePath": "/toolresults/v1beta3/projects/",
12 "baseUrl": "https://www.googleapis.com/toolresults/v1beta3/projects/", 12 "baseUrl": "https://www.googleapis.com/toolresults/v1beta3/projects/",
13 "batchPath": "batch", 13 "batchPath": "batch",
14 "canonicalName": "Tool Results", 14 "canonicalName": "Tool Results",
15 "description": "Reads and publishes results from Firebase Test Lab.", 15 "description": "Reads and publishes results from Firebase Test Lab.",
16 "discoveryVersion": "v1", 16 "discoveryVersion": "v1",
17 "documentationLink": "https://firebase.google.com/docs/test-lab/", 17 "documentationLink": "https://firebase.google.com/docs/test-lab/",
18 "etag": "\"YWOzh2SDasdU84ArJnpYek-OMdg/rgh1OlPQXrIEyZGL6dxY7ZMki7E\"", 18 "etag": "\"YWOzh2SDasdU84ArJnpYek-OMdg/FDX3xIy-YNyTr7nvjDbYZ0L8B80\"",
19 "icons": { 19 "icons": {
20 "x16": "https://www.gstatic.com/images/branding/product/1x/googleg_16dp. png", 20 "x16": "https://www.gstatic.com/images/branding/product/1x/googleg_16dp. png",
21 "x32": "https://www.gstatic.com/images/branding/product/1x/googleg_32dp. png" 21 "x32": "https://www.gstatic.com/images/branding/product/1x/googleg_32dp. png"
22 }, 22 },
23 "id": "toolresults:v1beta3", 23 "id": "toolresults:v1beta3",
24 "kind": "discovery#restDescription", 24 "kind": "discovery#restDescription",
25 "name": "toolresults", 25 "name": "toolresults",
26 "ownerDomain": "google.com", 26 "ownerDomain": "google.com",
27 "ownerName": "Google", 27 "ownerName": "Google",
28 "parameters": { 28 "parameters": {
(...skipping 1046 matching lines...) Expand 10 before | Expand all | Expand 10 after
1075 } 1075 }
1076 } 1076 }
1077 } 1077 }
1078 } 1078 }
1079 } 1079 }
1080 } 1080 }
1081 } 1081 }
1082 } 1082 }
1083 } 1083 }
1084 }, 1084 },
1085 "revision": "20170522", 1085 "revision": "20170609",
1086 "rootUrl": "https://www.googleapis.com/", 1086 "rootUrl": "https://www.googleapis.com/",
1087 "schemas": { 1087 "schemas": {
1088 "Any": { 1088 "Any": {
1089 "description": "`Any` contains an arbitrary serialized protocol buff er message along with a URL that describes the type of the serialized message.\n \nProtobuf library provides support to pack/unpack Any values in the form of uti lity functions or additional generated methods of the Any type.\n\nExample 1: Pa ck and unpack a message in C++.\n\nFoo foo = ...; Any any; any.PackFrom(foo); .. . if (any.UnpackTo(&foo)) { ... }\n\nExample 2: Pack and unpack a message in Jav a.\n\nFoo foo = ...; Any any = Any.pack(foo); ... if (any.is(Foo.class)) { foo = any.unpack(Foo.class); }\n\nExample 3: Pack and unpack a message in Python.\n\n foo = Foo(...) any = Any() any.Pack(foo) ... if any.Is(Foo.DESCRIPTOR): any.Unpa ck(foo) ...\n\nExample 4: Pack and unpack a message in Go\n\nfoo := &pb.Foo{...} any, err := ptypes.MarshalAny(foo) ... foo := &pb.Foo{} if err := ptypes.Unmars halAny(any, foo); err != nil { ... }\n\nThe pack methods provided by protobuf li brary will by default use 'type.googleapis.com/full.type.name' as the type URL a nd the unpack methods only use the fully qualified type name after the last '/' in the type URL, for example \"foo.bar.com/x/y.z\" will yield type name \"y.z\". \n\n\n\nJSON ==== The JSON representation of an `Any` value uses the regular rep resentation of the deserialized, embedded message, with an additional field `@ty pe` which contains the type URL. Example:\n\npackage google.profile; message Per son { string first_name = 1; string last_name = 2; }\n\n{ \"@type\": \"type.goog leapis.com/google.profile.Person\", \"firstName\": , \"lastName\": }\n\nIf the embedded message type is well-known and has a custom JSON representation, that r epresentation will be embedded adding a field `value` which holds the custom JSO N in addition to the `@type` field. Example (for message [google.protobuf.Durati on][]):\n\n{ \"@type\": \"type.googleapis.com/google.protobuf.Duration\", \"valu e\": \"1.212s\" }", 1089 "description": "`Any` contains an arbitrary serialized protocol buff er message along with a URL that describes the type of the serialized message.\n \nProtobuf library provides support to pack/unpack Any values in the form of uti lity functions or additional generated methods of the Any type.\n\nExample 1: Pa ck and unpack a message in C++.\n\nFoo foo = ...; Any any; any.PackFrom(foo); .. . if (any.UnpackTo(&foo)) { ... }\n\nExample 2: Pack and unpack a message in Jav a.\n\nFoo foo = ...; Any any = Any.pack(foo); ... if (any.is(Foo.class)) { foo = any.unpack(Foo.class); }\n\nExample 3: Pack and unpack a message in Python.\n\n foo = Foo(...) any = Any() any.Pack(foo) ... if any.Is(Foo.DESCRIPTOR): any.Unpa ck(foo) ...\n\nExample 4: Pack and unpack a message in Go\n\nfoo := &pb.Foo{...} any, err := ptypes.MarshalAny(foo) ... foo := &pb.Foo{} if err := ptypes.Unmars halAny(any, foo); err != nil { ... }\n\nThe pack methods provided by protobuf li brary will by default use 'type.googleapis.com/full.type.name' as the type URL a nd the unpack methods only use the fully qualified type name after the last '/' in the type URL, for example \"foo.bar.com/x/y.z\" will yield type name \"y.z\". \n\n\n\nJSON ==== The JSON representation of an `Any` value uses the regular rep resentation of the deserialized, embedded message, with an additional field `@ty pe` which contains the type URL. Example:\n\npackage google.profile; message Per son { string first_name = 1; string last_name = 2; }\n\n{ \"@type\": \"type.goog leapis.com/google.profile.Person\", \"firstName\": , \"lastName\": }\n\nIf the embedded message type is well-known and has a custom JSON representation, that r epresentation will be embedded adding a field `value` which holds the custom JSO N in addition to the `@type` field. Example (for message [google.protobuf.Durati on][]):\n\n{ \"@type\": \"type.googleapis.com/google.protobuf.Duration\", \"valu e\": \"1.212s\" }",
1090 "id": "Any", 1090 "id": "Any",
1091 "properties": { 1091 "properties": {
1092 "typeUrl": { 1092 "typeUrl": {
1093 "description": "A URL/resource name whose content describes the type of the serialized protocol buffer message.\n\nFor URLs which use the sc heme `http`, `https`, or no scheme, the following restrictions and interpretatio ns apply:\n\n* If no scheme is provided, `https` is assumed. * The last segment of the URL's path must represent the fully qualified name of the type (as in `pa th/google.protobuf.Duration`). The name should be in a canonical form (e.g., lea ding \".\" is not accepted). * An HTTP GET on the URL must yield a [google.proto buf.Type][] value in binary format, or produce an error. * Applications are allo wed to cache lookup results based on the URL, or have them precompiled into a bi nary to avoid any lookup. Therefore, binary compatibility needs to be preserved on changes to types. (Use versioned type names to manage breaking changes.)\n\nS chemes other than `http`, `https` (or the empty scheme) might be used with imple mentation specific semantics.", 1093 "description": "A URL/resource name whose content describes the type of the serialized protocol buffer message.\n\nFor URLs which use the sc heme `http`, `https`, or no scheme, the following restrictions and interpretatio ns apply:\n\n* If no scheme is provided, `https` is assumed. * The last segment of the URL's path must represent the fully qualified name of the type (as in `pa th/google.protobuf.Duration`). The name should be in a canonical form (e.g., lea ding \".\" is not accepted). * An HTTP GET on the URL must yield a [google.proto buf.Type][] value in binary format, or produce an error. * Applications are allo wed to cache lookup results based on the URL, or have them precompiled into a bi nary to avoid any lookup. Therefore, binary compatibility needs to be preserved on changes to types. (Use versioned type names to manage breaking changes.)\n\nS chemes other than `http`, `https` (or the empty scheme) might be used with imple mentation specific semantics.",
1094 "type": "string" 1094 "type": "string"
1095 }, 1095 },
(...skipping 21 matching lines...) Expand all
1117 "", 1117 "",
1118 "", 1118 "",
1119 "", 1119 "",
1120 "", 1120 "",
1121 "" 1121 ""
1122 ], 1122 ],
1123 "type": "string" 1123 "type": "string"
1124 }, 1124 },
1125 "perfUnit": { 1125 "perfUnit": {
1126 "enum": [ 1126 "enum": [
1127 "byte",
1127 "bytesPerSecond", 1128 "bytesPerSecond",
1128 "framesPerSecond", 1129 "framesPerSecond",
1129 "kibibyte", 1130 "kibibyte",
1130 "percent", 1131 "percent",
1131 "perfUnitUnspecified" 1132 "perfUnitUnspecified"
1132 ], 1133 ],
1133 "enumDescriptions": [ 1134 "enumDescriptions": [
1134 "", 1135 "",
1135 "", 1136 "",
1136 "", 1137 "",
1138 "",
1137 "", 1139 "",
1138 "" 1140 ""
1139 ], 1141 ],
1140 "type": "string" 1142 "type": "string"
1141 }, 1143 },
1142 "sampleSeriesLabel": { 1144 "sampleSeriesLabel": {
1143 "enum": [ 1145 "enum": [
1144 "cpuKernel", 1146 "cpuKernel",
1145 "cpuTotal", 1147 "cpuTotal",
1146 "cpuUser", 1148 "cpuUser",
(...skipping 914 matching lines...) Expand 10 before | Expand all | Expand 10 after
2061 "description": "The test case to which this output file belo ngs.\n\n- In response: present if set by create/update request - In create/updat e request: optional" 2063 "description": "The test case to which this output file belo ngs.\n\n- In response: present if set by create/update request - In create/updat e request: optional"
2062 } 2064 }
2063 }, 2065 },
2064 "type": "object" 2066 "type": "object"
2065 } 2067 }
2066 }, 2068 },
2067 "servicePath": "toolresults/v1beta3/projects/", 2069 "servicePath": "toolresults/v1beta3/projects/",
2068 "title": "Cloud Tool Results API", 2070 "title": "Cloud Tool Results API",
2069 "version": "v1beta3" 2071 "version": "v1beta3"
2070 } 2072 }
OLDNEW
« no previous file with comments | « discovery/googleapis_beta/sqladmin__v1beta4.json ('k') | discovery/googleapis_beta/videointelligence__v1beta1.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698