Skip to content

Commit

Permalink
Update discovery documents and generated code
Browse files Browse the repository at this point in the history
automatically_generated_update
  • Loading branch information
cloudsharp committed Nov 16, 2016
1 parent 3388144 commit 6caf680
Show file tree
Hide file tree
Showing 80 changed files with 290 additions and 116 deletions.
4 changes: 2 additions & 2 deletions DiscoveryJson/adsense_v1.3.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"kind": "discovery#restDescription",
"etag": "\"C5oy1hgQsABtYOYIOXWcR3BgYqU/FIzrj2-ZFNT7rvXnyPwAwC30dRE\"",
"etag": "\"C5oy1hgQsABtYOYIOXWcR3BgYqU/Xyh17C6nbp2FDNiILTGv1QPT3OU\"",
"discoveryVersion": "v1",
"id": "adsense:v1.3",
"name": "adsense",
"canonicalName": "AdSense",
"version": "v1.3",
"revision": "20161113",
"revision": "20161114",
"title": "AdSense Management API",
"description": "Accesses AdSense publishers' inventory and generates performance reports.",
"ownerDomain": "google.com",
Expand Down
4 changes: 2 additions & 2 deletions DiscoveryJson/adsense_v1.4.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"kind": "discovery#restDescription",
"etag": "\"C5oy1hgQsABtYOYIOXWcR3BgYqU/xX3D68McJTrwCn18GnMLVfy5yHI\"",
"etag": "\"C5oy1hgQsABtYOYIOXWcR3BgYqU/-5CJQeC4GyR9gsIkOrftOh5JRHg\"",
"discoveryVersion": "v1",
"id": "adsense:v1.4",
"name": "adsense",
"canonicalName": "AdSense",
"version": "v1.4",
"revision": "20161113",
"revision": "20161114",
"title": "AdSense Management API",
"description": "Accesses AdSense publishers' inventory and generates performance reports.",
"ownerDomain": "google.com",
Expand Down
4 changes: 2 additions & 2 deletions DiscoveryJson/adsensehost_v4.1.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"kind": "discovery#restDescription",
"etag": "\"C5oy1hgQsABtYOYIOXWcR3BgYqU/8SVydH-PYn8GXz_0eABQyuY9xYs\"",
"etag": "\"C5oy1hgQsABtYOYIOXWcR3BgYqU/m2TFANTQVL-xjdyqSgVqJoSBogw\"",
"discoveryVersion": "v1",
"id": "adsensehost:v4.1",
"name": "adsensehost",
"canonicalName": "AdSense Host",
"version": "v4.1",
"revision": "20161113",
"revision": "20161114",
"title": "AdSense Host API",
"description": "Generates performance reports, generates ad codes, and provides publisher management capabilities for AdSense Hosts.",
"ownerDomain": "google.com",
Expand Down
37 changes: 32 additions & 5 deletions DiscoveryJson/appengine_v1.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"kind": "discovery#restDescription",
"etag": "\"C5oy1hgQsABtYOYIOXWcR3BgYqU/_JlSbgZ5hP4Cc7VHxlMuD8xCWYQ\"",
"etag": "\"C5oy1hgQsABtYOYIOXWcR3BgYqU/v-kJzbgZGpkfiAIOSmRwqjI75nc\"",
"discoveryVersion": "v1",
"id": "appengine:v1",
"name": "appengine",
"version": "v1",
"revision": "20161101",
"revision": "20161114",
"title": "Google App Engine Admin API",
"description": "Provisions and manages App Engine applications.",
"ownerDomain": "google.com",
Expand Down Expand Up @@ -727,6 +727,33 @@
"type": "number",
"description": "Memory (GB) needed.",
"format": "double"
},
"volumes": {
"type": "array",
"description": "User specified volumes.",
"items": {
"$ref": "Volume"
}
}
}
},
"Volume": {
"id": "Volume",
"type": "object",
"description": "Volumes mounted within the app container. Only applicable for VM runtimes.",
"properties": {
"name": {
"type": "string",
"description": "Unique name for the volume."
},
"volumeType": {
"type": "string",
"description": "Underlying volume type, e.g. 'tmpfs'."
},
"sizeGb": {
"type": "number",
"description": "Volume size in GB.",
"format": "double"
}
}
},
Expand Down Expand Up @@ -1464,11 +1491,11 @@
"id": "appengine.apps.patch",
"path": "v1/apps/{appsId}",
"httpMethod": "PATCH",
"description": "Updates application fields.",
"description": "Updates the specified Application resource. You can update the following fields: * [`auth_domain`](https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps#Application.FIELDS.auth_domain) * [`default_cookie_expiration`](https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps#Application.FIELDS.default_cookie_expiration)",
"parameters": {
"appsId": {
"type": "string",
"description": "Part of `name`. Name of the application to update. Example: `apps/myapp`.",
"description": "Part of `name`. Name of the Application resource to update. Example: `apps/myapp`.",
"required": true,
"location": "path"
},
Expand All @@ -1495,7 +1522,7 @@
"id": "appengine.apps.repair",
"path": "v1/apps/{appsId}:repair",
"httpMethod": "POST",
"description": "Recreates the required App Engine features for the application in your project, for example a Cloud Storage bucket or App Engine service account. Use this method if you receive an error message about a missing feature, for example \"*Error retrieving the App Engine service account*\".",
"description": "Recreates the required App Engine features for the specified App Engine application, for example a Cloud Storage bucket or App Engine service account. Use this method if you receive an error message about a missing feature, for example, *Error retrieving the App Engine service account*.",
"parameters": {
"appsId": {
"type": "string",
Expand Down
35 changes: 31 additions & 4 deletions DiscoveryJson/appengine_v1beta4.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"kind": "discovery#restDescription",
"etag": "\"C5oy1hgQsABtYOYIOXWcR3BgYqU/8zFUuQjeU3OxAa8F7VzgjiZNJ4k\"",
"etag": "\"tbys6C40o18GZwyMen5GMkdK-3s/OOn7sGs_QDETnTqbpzk5QtS42kA\"",
"discoveryVersion": "v1",
"id": "appengine:v1beta4",
"name": "appengine",
"version": "v1beta4",
"revision": "20161101",
"revision": "20161114",
"title": "Google App Engine Admin API",
"description": "Provisions and manages App Engine applications.",
"ownerDomain": "google.com",
Expand Down Expand Up @@ -633,6 +633,33 @@
"type": "number",
"description": "Memory (GB) needed.",
"format": "double"
},
"volumes": {
"type": "array",
"description": "User specified volumes.",
"items": {
"$ref": "Volume"
}
}
}
},
"Volume": {
"id": "Volume",
"type": "object",
"description": "Volumes mounted within the app container. Only applicable for VM runtimes.",
"properties": {
"name": {
"type": "string",
"description": "Unique name for the volume."
},
"volumeType": {
"type": "string",
"description": "Underlying volume type, e.g. 'tmpfs'."
},
"sizeGb": {
"type": "number",
"description": "Volume size in GB.",
"format": "double"
}
}
},
Expand Down Expand Up @@ -1407,11 +1434,11 @@
"id": "appengine.apps.patch",
"path": "v1beta4/apps/{appsId}",
"httpMethod": "PATCH",
"description": "Updates application fields.",
"description": "Updates the specified Application resource. You can update the following fields: * [`auth_domain`](https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta4/apps#Application.FIELDS.auth_domain) * [`default_cookie_expiration`](https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta4/apps#Application.FIELDS.default_cookie_expiration)",
"parameters": {
"appsId": {
"type": "string",
"description": "Part of `name`. Name of the application to update. For example: \"apps/myapp\".",
"description": "Part of `name`. Name of the Application resource to update. Example: `apps/myapp`.",
"required": true,
"location": "path"
},
Expand Down
35 changes: 31 additions & 4 deletions DiscoveryJson/appengine_v1beta5.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"kind": "discovery#restDescription",
"etag": "\"C5oy1hgQsABtYOYIOXWcR3BgYqU/bxm0Hg_anT2iVOk8OuVymCOFgn0\"",
"etag": "\"tbys6C40o18GZwyMen5GMkdK-3s/g7IZPkFg1ZxsjWWtfDGhyK_8jjA\"",
"discoveryVersion": "v1",
"id": "appengine:v1beta5",
"name": "appengine",
"version": "v1beta5",
"revision": "20161101",
"revision": "20161114",
"title": "Google App Engine Admin API",
"description": "Provisions and manages App Engine applications.",
"ownerDomain": "google.com",
Expand Down Expand Up @@ -638,6 +638,33 @@
"type": "number",
"description": "Memory (GB) needed.",
"format": "double"
},
"volumes": {
"type": "array",
"description": "Volumes mounted within the app container.",
"items": {
"$ref": "Volume"
}
}
}
},
"Volume": {
"id": "Volume",
"type": "object",
"description": "Volumes mounted within the app container. Only applicable for VM runtimes.",
"properties": {
"name": {
"type": "string",
"description": "Unique name for the volume."
},
"volumeType": {
"type": "string",
"description": "Underlying volume type, e.g. 'tmpfs'."
},
"sizeGb": {
"type": "number",
"description": "Volume size in GB.",
"format": "double"
}
}
},
Expand Down Expand Up @@ -1374,11 +1401,11 @@
"id": "appengine.apps.patch",
"path": "v1beta5/apps/{appsId}",
"httpMethod": "PATCH",
"description": "Updates application fields.",
"description": "Updates the specified Application resource. You can update the following fields: * [`auth_domain`](https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta5/apps#Application.FIELDS.auth_domain) * [`default_cookie_expiration`](https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta5/apps#Application.FIELDS.default_cookie_expiration)",
"parameters": {
"appsId": {
"type": "string",
"description": "Part of `name`. Name of the application to update. Example: `apps/myapp`.",
"description": "Part of `name`. Name of the Application resource to update. Example: `apps/myapp`.",
"required": true,
"location": "path"
},
Expand Down
4 changes: 2 additions & 2 deletions DiscoveryJson/appsactivity_v1.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"kind": "discovery#restDescription",
"etag": "\"C5oy1hgQsABtYOYIOXWcR3BgYqU/AL4Wny77NtdlnSwz-NSMVOyK8q4\"",
"etag": "\"C5oy1hgQsABtYOYIOXWcR3BgYqU/J6KX7Iaijb2iY6fD05oUrHYNsS8\"",
"discoveryVersion": "v1",
"id": "appsactivity:v1",
"name": "appsactivity",
"version": "v1",
"revision": "20161101",
"revision": "20161111",
"title": "Google Apps Activity API",
"description": "Provides a historical view of activity.",
"ownerDomain": "google.com",
Expand Down
2 changes: 1 addition & 1 deletion DiscoveryJson/cloudbuild_v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -887,7 +887,7 @@
"id": "ListBuildsResponse"
}
},
"revision": "20161110",
"revision": "20161115",
"basePath": "",
"icons": {
"x32": "http://www.google.com/images/icons/product/search-32.gif",
Expand Down
2 changes: 1 addition & 1 deletion DiscoveryJson/clouddebugger_v2.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"kind": "discovery#restDescription",
"etag": "\"C5oy1hgQsABtYOYIOXWcR3BgYqU/QjifI48X3fgI9mRgli3ziT84a8U\"",
"etag": "\"tbys6C40o18GZwyMen5GMkdK-3s/QjifI48X3fgI9mRgli3ziT84a8U\"",
"discoveryVersion": "v1",
"id": "clouddebugger:v2",
"name": "clouddebugger",
Expand Down
2 changes: 1 addition & 1 deletion DiscoveryJson/compute_beta.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"kind": "discovery#restDescription",
"etag": "\"C5oy1hgQsABtYOYIOXWcR3BgYqU/kCgoP07JftN2pen6C26lG23BYh0\"",
"etag": "\"tbys6C40o18GZwyMen5GMkdK-3s/kCgoP07JftN2pen6C26lG23BYh0\"",
"discoveryVersion": "v1",
"id": "compute:beta",
"name": "compute",
Expand Down
2 changes: 1 addition & 1 deletion DiscoveryJson/dataflow_v1b3.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"kind": "discovery#restDescription",
"etag": "\"C5oy1hgQsABtYOYIOXWcR3BgYqU/xAS9HNORjhocTytPtpE1KQr-LHM\"",
"etag": "\"tbys6C40o18GZwyMen5GMkdK-3s/xAS9HNORjhocTytPtpE1KQr-LHM\"",
"discoveryVersion": "v1",
"id": "dataflow:v1b3",
"name": "dataflow",
Expand Down
2 changes: 1 addition & 1 deletion DiscoveryJson/dataproc_v1beta1.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"kind": "discovery#restDescription",
"etag": "\"C5oy1hgQsABtYOYIOXWcR3BgYqU/cZQ-6vqHhMM0YELMHYWsiSzNXAM\"",
"etag": "\"tbys6C40o18GZwyMen5GMkdK-3s/cZQ-6vqHhMM0YELMHYWsiSzNXAM\"",
"discoveryVersion": "v1",
"id": "dataproc:v1beta1",
"name": "dataproc",
Expand Down
2 changes: 1 addition & 1 deletion DiscoveryJson/dns_v1.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"kind": "discovery#restDescription",
"etag": "\"C5oy1hgQsABtYOYIOXWcR3BgYqU/75Pq0NauNIYNncBljSkJwxX4pes\"",
"etag": "\"tbys6C40o18GZwyMen5GMkdK-3s/75Pq0NauNIYNncBljSkJwxX4pes\"",
"discoveryVersion": "v1",
"id": "dns:v1",
"name": "dns",
Expand Down
2 changes: 1 addition & 1 deletion DiscoveryJson/fitness_v1.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"kind": "discovery#restDescription",
"etag": "\"C5oy1hgQsABtYOYIOXWcR3BgYqU/YYTaKGUD7QZsoB7peT0bkV-gPP8\"",
"etag": "\"tbys6C40o18GZwyMen5GMkdK-3s/YYTaKGUD7QZsoB7peT0bkV-gPP8\"",
"discoveryVersion": "v1",
"id": "fitness:v1",
"name": "fitness",
Expand Down
2 changes: 1 addition & 1 deletion DiscoveryJson/fusiontables_v2.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"kind": "discovery#restDescription",
"etag": "\"C5oy1hgQsABtYOYIOXWcR3BgYqU/kDVOG_nLeWEXUFYsMAXo19Rc6tI\"",
"etag": "\"tbys6C40o18GZwyMen5GMkdK-3s/kDVOG_nLeWEXUFYsMAXo19Rc6tI\"",
"discoveryVersion": "v1",
"id": "fusiontables:v2",
"name": "fusiontables",
Expand Down
2 changes: 1 addition & 1 deletion DiscoveryJson/gamesManagement_v1management.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"kind": "discovery#restDescription",
"etag": "\"C5oy1hgQsABtYOYIOXWcR3BgYqU/4qjX0AcWH209Ud67wdx_xFFZGwc\"",
"etag": "\"tbys6C40o18GZwyMen5GMkdK-3s/4qjX0AcWH209Ud67wdx_xFFZGwc\"",
"discoveryVersion": "v1",
"id": "gamesManagement:v1management",
"name": "gamesManagement",
Expand Down
2 changes: 1 addition & 1 deletion DiscoveryJson/oauth2_v1.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"kind": "discovery#restDescription",
"etag": "\"C5oy1hgQsABtYOYIOXWcR3BgYqU/YC9VfzpBKY6Xd5uug0DbNJU15PM\"",
"etag": "\"tbys6C40o18GZwyMen5GMkdK-3s/YC9VfzpBKY6Xd5uug0DbNJU15PM\"",
"discoveryVersion": "v1",
"id": "oauth2:v1",
"name": "oauth2",
Expand Down
2 changes: 1 addition & 1 deletion DiscoveryJson/playmoviespartner_v1.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"kind": "discovery#restDescription",
"etag": "\"C5oy1hgQsABtYOYIOXWcR3BgYqU/nOdrkDPVE_ecVVN74uINxtcznYM\"",
"etag": "\"tbys6C40o18GZwyMen5GMkdK-3s/nOdrkDPVE_ecVVN74uINxtcznYM\"",
"discoveryVersion": "v1",
"id": "playmoviespartner:v1",
"name": "playmoviespartner",
Expand Down
4 changes: 2 additions & 2 deletions DiscoveryJson/plusDomains_v1.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"kind": "discovery#restDescription",
"etag": "\"C5oy1hgQsABtYOYIOXWcR3BgYqU/qS8myTWqhDrtBsN6DeN2XwRQzq4\"",
"etag": "\"C5oy1hgQsABtYOYIOXWcR3BgYqU/V-uXwFlO1ztVvrjwkRnC_UzksB8\"",
"discoveryVersion": "v1",
"id": "plusDomains:v1",
"name": "plusDomains",
"version": "v1",
"revision": "20161113",
"revision": "20161114",
"title": "Google+ Domains API",
"description": "Builds on top of the Google+ platform for Google Apps Domains.",
"ownerDomain": "google.com",
Expand Down
4 changes: 2 additions & 2 deletions DiscoveryJson/plus_v1.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"kind": "discovery#restDescription",
"etag": "\"C5oy1hgQsABtYOYIOXWcR3BgYqU/Urai2g0mCOH1KzZeV_bDcu-Al1A\"",
"etag": "\"tbys6C40o18GZwyMen5GMkdK-3s/McDNYPSbrUGZ2kxLND4TnCT2yr0\"",
"discoveryVersion": "v1",
"id": "plus:v1",
"name": "plus",
"version": "v1",
"revision": "20161113",
"revision": "20161114",
"title": "Google+ API",
"description": "Builds on top of the Google+ platform.",
"ownerDomain": "google.com",
Expand Down
2 changes: 1 addition & 1 deletion DiscoveryJson/replicapoolupdater_v1beta1.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"kind": "discovery#restDescription",
"etag": "\"tbys6C40o18GZwyMen5GMkdK-3s/P5_iUYh8_v_wVwon8OoBQjkpoLM\"",
"etag": "\"C5oy1hgQsABtYOYIOXWcR3BgYqU/P5_iUYh8_v_wVwon8OoBQjkpoLM\"",
"discoveryVersion": "v1",
"id": "replicapoolupdater:v1beta1",
"name": "replicapoolupdater",
Expand Down
2 changes: 1 addition & 1 deletion DiscoveryJson/runtimeconfig_v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@
"id": "CancelOperationRequest"
}
},
"revision": "20161107",
"revision": "20161114",
"basePath": "",
"icons": {
"x32": "http://www.google.com/images/icons/product/search-32.gif",
Expand Down
2 changes: 1 addition & 1 deletion DiscoveryJson/runtimeconfig_v1beta1.json
Original file line number Diff line number Diff line change
Expand Up @@ -785,7 +785,7 @@
"id": "ListVariablesResponse"
}
},
"revision": "20161107",
"revision": "20161114",
"basePath": "",
"icons": {
"x32": "http://www.google.com/images/icons/product/search-32.gif",
Expand Down
Loading

0 comments on commit 6caf680

Please sign in to comment.