Fix method doc signatures for multiline required parameters (#374)
* Fix method doc signatures for multiline required parameters.
Existing doc generator failed to recognize parameters as required when parameter descriptions
extended over more than one line. Besides presenting incorrect information, resulting
inconsistencies broke checks for automated sample generation.
* Regen docs
diff --git a/docs/dyn/dataflow_v1b3.projects.html b/docs/dyn/dataflow_v1b3.projects.html
index 6ec61ab..a723b9e 100644
--- a/docs/dyn/dataflow_v1b3.projects.html
+++ b/docs/dyn/dataflow_v1b3.projects.html
@@ -109,10 +109,6 @@
#
# The VM should be identified by the labels attached to the WorkerMessage that
# this health ping belongs to.
- "vmStartupTime": "A String", # The time the VM was booted.
- "reportInterval": "A String", # The interval at which the worker is sending health reports.
- # The default value of 0 should be interpreted as the field is not being
- # explicitly set by the worker.
"pods": [ # The pods running on the worker. See:
# http://kubernetes.io/v1.1/docs/api-reference/v1/definitions.html#_v1_pod
#
@@ -122,6 +118,10 @@
"a_key": "", # Properties of the object.
},
],
+ "reportInterval": "A String", # The interval at which the worker is sending health reports.
+ # The default value of 0 should be interpreted as the field is not being
+ # explicitly set by the worker.
+ "vmStartupTime": "A String", # The time the VM was booted.
"vmIsHealthy": True or False, # Whether the VM is healthy.
},
"labels": { # Labels are used to group WorkerMessages.