Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!doctype html><html><head><meta charset="utf-8"><title>gcloud</title><meta name="description" content="Google Cloud Platform's client library documentation"><meta name="viewport" content="width=device-width, initial-scale=1"><link rel="shortcut icon" href="https://cloud.google.com/images/gcp-favicon.ico"><link rel="stylesheet" href="src/vendor-d362a4bbd8.css"><link rel="stylesheet" href="src/app-fceb7d90bc.css"></head><body><!--[if lt IE 10]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]--><main ui-view="" autoscroll="true"></main><script src="src/vendor-7173ada14e.js"></script><script src="src/app-457ddf1d00.js"></script><script>
<![endif]--><main ui-view="" autoscroll="true"></main><script src="src/vendor-debc731f3c.js"></script><script src="src/app-8873e5ce88.js"></script><script>
(function() {
var $injector = angular.injector(['ng']);
var $http = $injector.get('$http');
Expand Down
2 changes: 1 addition & 1 deletion json/master/bigquery/dataset.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion json/master/bigquery/index.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion json/master/bigquery/job.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion json/master/bigquery/table.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion json/master/compute/address.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"id":"compute/address","type":"class","name":"Address","description":null,"source":"/lib/compute/address.js#L64","parent":"compute","children":[],"methods":[{"id":"compute/address#Address","name":"Address","type":"constructor","description":"<p>An Address object allows you to interact with a Google Compute Engine address.</p>","source":"/lib/compute/address.js#L64","resources":[{"title":"Instances and Networks","link":"https://cloud.google.com/compute/docs/instances-and-network"},{"title":"Address Resource","link":"https://cloud.google.com/compute/docs/reference/v1/addresses"}],"examples":[{"code":"var gcloud = require('gcloud')({\n keyFilename: '/path/to/keyfile.json',\n projectId: 'grape-spaceship-123'\n});\n\nvar gce = gcloud.compute();\n\nvar region = gce.region('region-name');\n\nvar address = region.address('address1');"}],"params":[],"exceptions":[],"returns":[]},{"id":"compute/address#create","name":"create","type":"instance","description":"<p>Create an address.</p>","source":"/lib/compute/address.js#L79","resources":[],"examples":[{"code":"address.create(function(err, address, operation, apiResponse) {\n // `address` is an Address object.\n\n // `operation` is an Operation object that can be used to check the\n // of the request.\n});"}],"params":[{"name":"options","description":"<ul> <li>See <a data-custom-type=\"compute#createAddress\"></a>.</li> </ul> ","types":["object"],"optional":true,"nullable":false}],"exceptions":[],"returns":[]},{"id":"compute/address#exists","name":"exists","type":"instance","description":"<p>Check if the address exists.</p>","source":"/lib/compute/address.js#L92","resources":[],"examples":[{"code":"address.exists(function(err, exists) {});"}],"params":[{"name":"callback","description":"<ul> <li>The callback function.</li> </ul> ","types":["function"],"optional":false,"nullable":false},{"name":"callback.err","description":"<ul> <li>An error returned while making this request.</li> </ul> ","types":["error"],"optional":false,"nullable":true},{"name":"callback.exists","description":"<ul> <li>Whether the address exists or not.</li> </ul> ","types":["boolean"],"optional":false,"nullable":false}],"exceptions":[],"returns":[]},{"id":"compute/address#get","name":"get","type":"instance","description":"<p>Get an address if it exists.</p><p>You may optionally use this to &quot;get or create&quot; an object by providing an object with <code>autoCreate</code> set to <code>true</code>. Any extra configuration that is normally required for the <code>create</code> method must be contained within this object as well.</p>","source":"/lib/compute/address.js#L111","resources":[],"examples":[{"code":"address.get(function(err, address, apiResponse) {\n // `address` is an Address object.\n});"}],"params":[{"name":"options","description":"<ul> <li>Configuration object.</li> </ul> ","types":["options"],"optional":true,"nullable":false},{"name":"options.autoCreate","description":"<ul> <li>Automatically create the object if it does not exist. Default: <code>false</code></li> </ul> ","types":["boolean"],"optional":false,"nullable":false}],"exceptions":[],"returns":[]},{"id":"compute/address#getMetadata","name":"getMetadata","type":"instance","description":"<p>Get the metadata of this address.</p>","source":"/lib/compute/address.js#L128","resources":[{"title":"Address Resource","link":"https://cloud.google.com/compute/docs/reference/v1/addresses"},{"title":"Addresses: get API Documentation","link":"https://cloud.google.com/compute/docs/reference/v1/addresses/get"}],"examples":[{"code":"address.getMetadata(function(err, metadata, apiResponse) {});"}],"params":[{"name":"callback","description":"<ul> <li>The callback function.</li> </ul> ","types":["function"],"optional":true,"nullable":false},{"name":"callback.err","description":"<ul> <li>An error returned while making this request.</li> </ul> ","types":["error"],"optional":false,"nullable":true},{"name":"callback.metadata","description":"<ul> <li>The address&#39;s metadata.</li> </ul> ","types":["object"],"optional":false,"nullable":false},{"name":"callback.apiResponse","description":"<ul> <li>The full API response.</li> </ul> ","types":["object"],"optional":false,"nullable":false}],"exceptions":[],"returns":[]},{"id":"compute/address#delete","name":"delete","type":"instance","description":"<p>Delete the address.</p>","source":"/lib/compute/address.js#L162","resources":[{"title":"Addresses: delete API Documentation","link":"https://cloud.google.com/compute/docs/reference/v1/addresses/delete"}],"examples":[{"code":"address.delete(function(err, operation, apiResponse) {\n // `operation` is an Operation object that can be used to check the status\n // of the request.\n});"}],"params":[{"name":"callback","description":"<ul> <li>The callback function.</li> </ul> ","types":["function"],"optional":true,"nullable":false},{"name":"callback.err","description":"<ul> <li>An error returned while making this request.</li> </ul> ","types":["error"],"optional":false,"nullable":true},{"name":"callback.operation","description":"<ul> <li>An operation object that can be used to check the status of the request.</li> </ul> ","types":["<a data-custom-type=\"compute/operation\"></a>"],"optional":false,"nullable":false},{"name":"callback.apiResponse","description":"<ul> <li>The full API response.</li> </ul> ","types":["object"],"optional":false,"nullable":false}],"exceptions":[],"returns":[]}]}
{"id":"compute/address","type":"class","name":"Address","description":null,"source":"/lib/compute/address.js#L64","parent":"compute","children":[],"methods":[{"id":"Address","name":"Address","type":"constructor","description":"<p>An Address object allows you to interact with a Google Compute Engine address.</p>","source":"/lib/compute/address.js#L64","resources":[{"title":"Instances and Networks","link":"https://cloud.google.com/compute/docs/instances-and-network"},{"title":"Address Resource","link":"https://cloud.google.com/compute/docs/reference/v1/addresses"}],"examples":[{"code":"var gcloud = require('gcloud')({\n keyFilename: '/path/to/keyfile.json',\n projectId: 'grape-spaceship-123'\n});\n\nvar gce = gcloud.compute();\n\nvar region = gce.region('region-name');\n\nvar address = region.address('address1');"}],"params":[],"exceptions":[],"returns":[]},{"id":"create","name":"create","type":"instance","description":"<p>Create an address.</p>","source":"/lib/compute/address.js#L79","resources":[],"examples":[{"code":"address.create(function(err, address, operation, apiResponse) {\n // `address` is an Address object.\n\n // `operation` is an Operation object that can be used to check the\n // of the request.\n});"}],"params":[{"name":"options","description":"<ul> <li>See <a data-custom-type=\"compute\" data-method=\"createAddress\">compute#createAddress</a>.</li> </ul> ","types":["object"],"optional":true,"nullable":false}],"exceptions":[],"returns":[]},{"id":"exists","name":"exists","type":"instance","description":"<p>Check if the address exists.</p>","source":"/lib/compute/address.js#L92","resources":[],"examples":[{"code":"address.exists(function(err, exists) {});"}],"params":[{"name":"callback","description":"<ul> <li>The callback function.</li> </ul> ","types":["function"],"optional":false,"nullable":false},{"name":"callback.err","description":"<ul> <li>An error returned while making this request.</li> </ul> ","types":["error"],"optional":false,"nullable":true},{"name":"callback.exists","description":"<ul> <li>Whether the address exists or not.</li> </ul> ","types":["boolean"],"optional":false,"nullable":false}],"exceptions":[],"returns":[]},{"id":"get","name":"get","type":"instance","description":"<p>Get an address if it exists.</p><p>You may optionally use this to &quot;get or create&quot; an object by providing an object with <code>autoCreate</code> set to <code>true</code>. Any extra configuration that is normally required for the <code>create</code> method must be contained within this object as well.</p>","source":"/lib/compute/address.js#L111","resources":[],"examples":[{"code":"address.get(function(err, address, apiResponse) {\n // `address` is an Address object.\n});"}],"params":[{"name":"options","description":"<ul> <li>Configuration object.</li> </ul> ","types":["options"],"optional":true,"nullable":false},{"name":"options.autoCreate","description":"<ul> <li>Automatically create the object if it does not exist. Default: <code>false</code></li> </ul> ","types":["boolean"],"optional":false,"nullable":false}],"exceptions":[],"returns":[]},{"id":"getMetadata","name":"getMetadata","type":"instance","description":"<p>Get the metadata of this address.</p>","source":"/lib/compute/address.js#L128","resources":[{"title":"Address Resource","link":"https://cloud.google.com/compute/docs/reference/v1/addresses"},{"title":"Addresses: get API Documentation","link":"https://cloud.google.com/compute/docs/reference/v1/addresses/get"}],"examples":[{"code":"address.getMetadata(function(err, metadata, apiResponse) {});"}],"params":[{"name":"callback","description":"<ul> <li>The callback function.</li> </ul> ","types":["function"],"optional":true,"nullable":false},{"name":"callback.err","description":"<ul> <li>An error returned while making this request.</li> </ul> ","types":["error"],"optional":false,"nullable":true},{"name":"callback.metadata","description":"<ul> <li>The address&#39;s metadata.</li> </ul> ","types":["object"],"optional":false,"nullable":false},{"name":"callback.apiResponse","description":"<ul> <li>The full API response.</li> </ul> ","types":["object"],"optional":false,"nullable":false}],"exceptions":[],"returns":[]},{"id":"delete","name":"delete","type":"instance","description":"<p>Delete the address.</p>","source":"/lib/compute/address.js#L162","resources":[{"title":"Addresses: delete API Documentation","link":"https://cloud.google.com/compute/docs/reference/v1/addresses/delete"}],"examples":[{"code":"address.delete(function(err, operation, apiResponse) {\n // `operation` is an Operation object that can be used to check the status\n // of the request.\n});"}],"params":[{"name":"callback","description":"<ul> <li>The callback function.</li> </ul> ","types":["function"],"optional":true,"nullable":false},{"name":"callback.err","description":"<ul> <li>An error returned while making this request.</li> </ul> ","types":["error"],"optional":false,"nullable":true},{"name":"callback.operation","description":"<ul> <li>An operation object that can be used to check the status of the request.</li> </ul> ","types":["<a data-custom-type=\"compute/operation\">compute/operation</a>"],"optional":false,"nullable":false},{"name":"callback.apiResponse","description":"<ul> <li>The full API response.</li> </ul> ","types":["object"],"optional":false,"nullable":false}],"exceptions":[],"returns":[]}]}
Loading