Updated generated docs
diff --git a/docs/dyn/prediction.v1.4.hostedmodels.html b/docs/dyn/prediction.v1.4.hostedmodels.html
index bb4b2b4..00ad814 100644
--- a/docs/dyn/prediction.v1.4.hostedmodels.html
+++ b/docs/dyn/prediction.v1.4.hostedmodels.html
@@ -18,7 +18,34 @@
<br>
Args:<br>
body: object, The request body. (required)<br>
- hostedModelName: string, The name of a hosted model. (required)</tt></dd></dl>
+ The object takes the form of:<br>
+ <br>
+{<br>
+ "input": { # Input to the model for a prediction<br>
+ "csvInstance": [ # A list of input features, these can be strings or doubles.<br>
+ "",<br>
+ ],<br>
+ },<br>
+ }<br>
+ <br>
+ hostedModelName: string, The name of a hosted model. (required)<br>
+ <br>
+Returns:<br>
+ An object of the form<br>
+ <br>
+ {<br>
+ "kind": "prediction#output", # What kind of resource this is.<br>
+ "outputLabel": "A String", # The most likely class label [Categorical models only].<br>
+ "id": "A String", # The unique name for the predictive model.<br>
+ "outputMulti": [ # A list of class labels with their estimated probabilities [Categorical models only].<br>
+ {<br>
+ "score": 3.140000, # The probability of the class label.<br>
+ "label": "A String", # The class label.<br>
+ },<br>
+ ],<br>
+ "outputValue": 3.140000, # The estimated regression value [Regression models only].<br>
+ "selfLink": "A String", # A URL to re-request this resource.<br>
+ }</tt></dd></dl>
<hr>
Data descriptors defined here:<br>