Update docs
diff --git a/docs/dyn/appengine_v1beta5.apps.html b/docs/dyn/appengine_v1beta5.apps.html
index 61839b7..4445bfe 100644
--- a/docs/dyn/appengine_v1beta5.apps.html
+++ b/docs/dyn/appengine_v1beta5.apps.html
@@ -101,18 +101,21 @@
An object of the form:
{ # An Application contains the top-level configuration of an App Engine application.
+ "defaultHostname": "A String", # The hostname used to reach the application, as resolved by App Engine. @OutputOnly
"name": "A String", # The full path to the application in the API. Example: "apps/myapp". @OutputOnly
"codeBucket": "A String", # A Google Cloud Storage bucket which can be used for storing files associated with an application. This bucket is associated with the application and can be used by the gcloud deployment commands. @OutputOnly
"defaultBucket": "A String", # A Google Cloud Storage bucket which can be used by the application to store content. @OutputOnly
- "dispatchRules": [ # HTTP path dispatch rules for requests to the app that do not explicitly target a service or version. The rules are order-dependent.
+ "dispatchRules": [ # HTTP path dispatch rules for requests to the app that do not explicitly target a service or version. The rules are order-dependent. @OutputOnly
{ # Rules to match an HTTP request and dispatch that request to a service.
"path": "A String", # The pathname within the host. This must start with a '/'. A single '*' (glob) can be included at the end of the path. The sum of the lengths of the domain and path may not exceed 100 characters.
"domain": "A String", # The domain name to match on. Supports '*' (glob) wildcarding on the left-hand side of a '.'. If empty, all domains will be matched (the same as '*').
"service": "A String", # The resource id of a Service in this application that should service the matched request. The Service must already exist. Example: "default".
},
],
- "location": "A String", # The location from which the application will be run. Choices are "us" for United States and "eu" for European Union. Application instances will run out of data centers in the chosen location and all of the application's End User Content will be stored at rest in the chosen location. The default is "us".
- "id": "A String", # The relative name/path of the application. Example: "myapp". @OutputOnly
+ "defaultCookieExpiration": "A String", # Determines the cookie expiration policy for the application. @OutputOnly
+ "location": "A String", # The location from which the application will be run. Application instances will run out of data centers in the chosen location and all of the application's End User Content will be stored at rest. The default is "us-central". Choices are: "us-central" - Central US "europe-west" - Western Europe "us-east1" - Eastern US
+ "authDomain": "A String", # If set, only users from the specified Google Apps authentication domain may access the application. If not set, any Google Account may access the application.
+ "id": "A String", # The relative name/path of the application. Example: "myapp".
}</pre>
</div>