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

Unified Diff: discovery/googleapis/searchconsole__v1.json

Issue 2973303002: Api-Roll 51: 2017-07-10 (Closed)
Patch Set: Created 3 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « discovery/googleapis/script__v1.json ('k') | discovery/googleapis/servicecontrol__v1.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: discovery/googleapis/searchconsole__v1.json
diff --git a/discovery/googleapis/searchconsole__v1.json b/discovery/googleapis/searchconsole__v1.json
index 2c917897fbee3708992c88d5f6a82bcd19432aa6..b8ffd3b03342e7e223b61ac4c0c3bfaddfb4f206 100644
--- a/discovery/googleapis/searchconsole__v1.json
+++ b/discovery/googleapis/searchconsole__v1.json
@@ -16,6 +16,27 @@
"ownerDomain": "google.com",
"ownerName": "Google",
"parameters": {
+ "quotaUser": {
+ "description": "Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.",
+ "location": "query",
+ "type": "string"
+ },
+ "pp": {
+ "default": "true",
+ "description": "Pretty-print response.",
+ "location": "query",
+ "type": "boolean"
+ },
+ "bearer_token": {
+ "description": "OAuth bearer token.",
+ "location": "query",
+ "type": "string"
+ },
+ "oauth_token": {
+ "description": "OAuth 2.0 token for the current user.",
+ "location": "query",
+ "type": "string"
+ },
"upload_protocol": {
"description": "Upload protocol for media (e.g. \"raw\", \"multipart\").",
"location": "query",
@@ -27,18 +48,13 @@
"location": "query",
"type": "boolean"
},
- "fields": {
- "description": "Selector specifying which fields to include in a partial response.",
- "location": "query",
- "type": "string"
- },
"uploadType": {
"description": "Legacy upload protocol for media (e.g. \"media\", \"multipart\").",
"location": "query",
"type": "string"
},
- "callback": {
- "description": "JSONP",
+ "fields": {
+ "description": "Selector specifying which fields to include in a partial response.",
"location": "query",
"type": "string"
},
@@ -55,6 +71,11 @@
"location": "query",
"type": "string"
},
+ "callback": {
+ "description": "JSONP",
+ "location": "query",
+ "type": "string"
+ },
"alt": {
"default": "json",
"description": "Data format for response.",
@@ -71,34 +92,13 @@
"location": "query",
"type": "string"
},
- "key": {
- "description": "API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.",
- "location": "query",
- "type": "string"
- },
"access_token": {
"description": "OAuth access token.",
"location": "query",
"type": "string"
},
- "quotaUser": {
- "description": "Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.",
- "location": "query",
- "type": "string"
- },
- "pp": {
- "default": "true",
- "description": "Pretty-print response.",
- "location": "query",
- "type": "boolean"
- },
- "oauth_token": {
- "description": "OAuth 2.0 token for the current user.",
- "location": "query",
- "type": "string"
- },
- "bearer_token": {
- "description": "OAuth bearer token.",
+ "key": {
+ "description": "API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.",
"location": "query",
"type": "string"
}
@@ -128,9 +128,63 @@
}
}
},
- "revision": "20170610",
+ "revision": "20170709",
"rootUrl": "https://searchconsole.googleapis.com/",
"schemas": {
+ "RunMobileFriendlyTestResponse": {
+ "description": "Mobile-friendly test response, including mobile-friendly issues and resource\nissues.",
+ "id": "RunMobileFriendlyTestResponse",
+ "properties": {
+ "resourceIssues": {
+ "description": "Information about embedded resources issues.",
+ "items": {
+ "$ref": "ResourceIssue"
+ },
+ "type": "array"
+ },
+ "testStatus": {
+ "$ref": "TestStatus",
+ "description": "Final state of the test, can be either complete or an error."
+ },
+ "mobileFriendliness": {
+ "description": "Test verdict, whether the page is mobile friendly or not.",
+ "enum": [
+ "MOBILE_FRIENDLY_TEST_RESULT_UNSPECIFIED",
+ "MOBILE_FRIENDLY",
+ "NOT_MOBILE_FRIENDLY"
+ ],
+ "enumDescriptions": [
+ "Internal error when running this test. Please try running the test again.",
+ "The page is mobile friendly.",
+ "The page is not mobile friendly."
+ ],
+ "type": "string"
+ },
+ "mobileFriendlyIssues": {
+ "description": "List of mobile-usability issues.",
+ "items": {
+ "$ref": "MobileFriendlyIssue"
+ },
+ "type": "array"
+ },
+ "screenshot": {
+ "$ref": "Image",
+ "description": "Screenshot of the requested URL."
+ }
+ },
+ "type": "object"
+ },
+ "ResourceIssue": {
+ "description": "Information about a resource with issue.",
+ "id": "ResourceIssue",
+ "properties": {
+ "blockedResource": {
+ "$ref": "BlockedResource",
+ "description": "Describes a blocked resource issue."
+ }
+ },
+ "type": "object"
+ },
"BlockedResource": {
"description": "Blocked resource.",
"id": "BlockedResource",
@@ -146,6 +200,10 @@
"description": "Final state of the test, including error details if necessary.",
"id": "TestStatus",
"properties": {
+ "details": {
+ "description": "Error details if applicable.",
+ "type": "string"
+ },
"status": {
"description": "Status of the test.",
"enum": [
@@ -161,9 +219,21 @@
"Google can not access the URL because of a user error such as a robots.txt\nblockage, a 403 or 500 code etc. Please make sure that the URL provided is\naccessible by Googlebot and is not password protected."
],
"type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "Image": {
+ "description": "Describe image data.",
+ "id": "Image",
+ "properties": {
+ "mimeType": {
+ "description": "The mime-type of the image data.",
+ "type": "string"
},
- "details": {
- "description": "Error details if applicable.",
+ "data": {
+ "description": "Image data in format determined by the mime type. Currently, the format\nwill always be \"image/png\", but this might change in the future.",
+ "format": "byte",
"type": "string"
}
},
@@ -184,22 +254,6 @@
},
"type": "object"
},
- "Image": {
- "description": "Describe image data.",
- "id": "Image",
- "properties": {
- "mimeType": {
- "description": "The mime-type of the image data.",
- "type": "string"
- },
- "data": {
- "description": "Image data in format determined by the mime type. Currently, the format\nwill always be \"image/png\", but this might change in the future.",
- "format": "byte",
- "type": "string"
- }
- },
- "type": "object"
- },
"MobileFriendlyIssue": {
"description": "Mobile-friendly issue.",
"id": "MobileFriendlyIssue",
@@ -228,60 +282,6 @@
}
},
"type": "object"
- },
- "RunMobileFriendlyTestResponse": {
- "description": "Mobile-friendly test response, including mobile-friendly issues and resource\nissues.",
- "id": "RunMobileFriendlyTestResponse",
- "properties": {
- "mobileFriendliness": {
- "description": "Test verdict, whether the page is mobile friendly or not.",
- "enum": [
- "MOBILE_FRIENDLY_TEST_RESULT_UNSPECIFIED",
- "MOBILE_FRIENDLY",
- "NOT_MOBILE_FRIENDLY"
- ],
- "enumDescriptions": [
- "Internal error when running this test. Please try running the test again.",
- "The page is mobile friendly.",
- "The page is not mobile friendly."
- ],
- "type": "string"
- },
- "mobileFriendlyIssues": {
- "description": "List of mobile-usability issues.",
- "items": {
- "$ref": "MobileFriendlyIssue"
- },
- "type": "array"
- },
- "screenshot": {
- "$ref": "Image",
- "description": "Screenshot of the requested URL."
- },
- "resourceIssues": {
- "description": "Information about embedded resources issues.",
- "items": {
- "$ref": "ResourceIssue"
- },
- "type": "array"
- },
- "testStatus": {
- "$ref": "TestStatus",
- "description": "Final state of the test, can be either complete or an error."
- }
- },
- "type": "object"
- },
- "ResourceIssue": {
- "description": "Information about a resource with issue.",
- "id": "ResourceIssue",
- "properties": {
- "blockedResource": {
- "$ref": "BlockedResource",
- "description": "Describes a blocked resource issue."
- }
- },
- "type": "object"
}
},
"servicePath": "",
« no previous file with comments | « discovery/googleapis/script__v1.json ('k') | discovery/googleapis/servicecontrol__v1.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698