chore: update docs/dyn (#1106)

diff --git a/docs/dyn/analytics_v3.data.ga.html b/docs/dyn/analytics_v3.data.ga.html
index 432cf71..66a6ae5 100644
--- a/docs/dyn/analytics_v3.data.ga.html
+++ b/docs/dyn/analytics_v3.data.ga.html
@@ -78,7 +78,7 @@
   <code><a href="#close">close()</a></code></p>
 <p class="firstline">Close httplib2 connections.</p>
 <p class="toc_element">
-  <code><a href="#get">get(ids, start_date, end_date, metrics, include_empty_rows=None, start_index=None, max_results=None, dimensions=None, segment=None, filters=None, samplingLevel=None, output=None, sort=None)</a></code></p>
+  <code><a href="#get">get(ids, start_date, end_date, metrics, sort=None, include_empty_rows=None, filters=None, start_index=None, segment=None, samplingLevel=None, max_results=None, output=None, dimensions=None)</a></code></p>
 <p class="firstline">Returns Analytics data for a view (profile).</p>
 <h3>Method Details</h3>
 <div class="method">
@@ -87,7 +87,7 @@
 </div>
 
 <div class="method">
-    <code class="details" id="get">get(ids, start_date, end_date, metrics, include_empty_rows=None, start_index=None, max_results=None, dimensions=None, segment=None, filters=None, samplingLevel=None, output=None, sort=None)</code>
+    <code class="details" id="get">get(ids, start_date, end_date, metrics, sort=None, include_empty_rows=None, filters=None, start_index=None, segment=None, samplingLevel=None, max_results=None, output=None, dimensions=None)</code>
   <pre>Returns Analytics data for a view (profile).
 
 Args:
@@ -95,28 +95,35 @@
   start_date: string, Start date for fetching Analytics data. Requests can specify a start date formatted as YYYY-MM-DD, or as a relative date (e.g., today, yesterday, or 7daysAgo). The default value is 7daysAgo. (required)
   end_date: string, End date for fetching Analytics data. Request can should specify an end date formatted as YYYY-MM-DD, or as a relative date (e.g., today, yesterday, or 7daysAgo). The default value is yesterday. (required)
   metrics: string, A comma-separated list of Analytics metrics. E.g., &#x27;ga:sessions,ga:pageviews&#x27;. At least one metric must be specified. (required)
+  sort: string, A comma-separated list of dimensions or metrics that determine the sort order for Analytics data.
   include_empty_rows: boolean, The response will include empty rows if this parameter is set to true, the default is true
-  start_index: integer, An index of the first entity to retrieve. Use this parameter as a pagination mechanism along with the max-results parameter.
-  max_results: integer, The maximum number of entries to include in this feed.
-  dimensions: string, A comma-separated list of Analytics dimensions. E.g., &#x27;ga:browser,ga:city&#x27;.
-  segment: string, An Analytics segment to be applied to data.
   filters: string, A comma-separated list of dimension or metric filters to be applied to Analytics data.
+  start_index: integer, An index of the first entity to retrieve. Use this parameter as a pagination mechanism along with the max-results parameter.
+  segment: string, An Analytics segment to be applied to data.
   samplingLevel: string, The desired sampling level.
     Allowed values
       DEFAULT - Returns response with a sample size that balances speed and accuracy.
       FASTER - Returns a fast response with a smaller sample size.
       HIGHER_PRECISION - Returns a more accurate response using a large sample size, but this may result in the response being slower.
+  max_results: integer, The maximum number of entries to include in this feed.
   output: string, The selected format for the response. Default format is JSON.
     Allowed values
       dataTable - Returns the response in Google Charts Data Table format. This is useful in creating visualization using Google Charts.
       json - Returns the response in standard JSON format.
-  sort: string, A comma-separated list of dimensions or metrics that determine the sort order for Analytics data.
+  dimensions: string, A comma-separated list of Analytics dimensions. E.g., &#x27;ga:browser,ga:city&#x27;.
 
 Returns:
   An object of the form:
 
     { # Analytics data for a given view (profile).
     &quot;dataTable&quot;: {
+      &quot;cols&quot;: [
+        {
+          &quot;type&quot;: &quot;A String&quot;,
+          &quot;id&quot;: &quot;A String&quot;,
+          &quot;label&quot;: &quot;A String&quot;,
+        },
+      ],
       &quot;rows&quot;: [
         {
           &quot;c&quot;: [
@@ -126,65 +133,58 @@
           ],
         },
       ],
-      &quot;cols&quot;: [
-        {
-          &quot;label&quot;: &quot;A String&quot;,
-          &quot;id&quot;: &quot;A String&quot;,
-          &quot;type&quot;: &quot;A String&quot;,
-        },
-      ],
     },
-    &quot;containsSampledData&quot;: True or False, # Determines if Analytics data contains samples.
-    &quot;query&quot;: { # Analytics data request query parameters.
-      &quot;filters&quot;: &quot;A String&quot;, # Comma-separated list of dimension or metric filters.
-      &quot;start-index&quot;: 42, # Start index.
-      &quot;samplingLevel&quot;: &quot;A String&quot;, # Desired sampling level
-      &quot;segment&quot;: &quot;A String&quot;, # Analytics advanced segment.
-      &quot;max-results&quot;: 42, # Maximum results per page.
-      &quot;ids&quot;: &quot;A String&quot;, # Unique table ID.
-      &quot;metrics&quot;: [ # List of analytics metrics.
-        &quot;A String&quot;,
-      ],
-      &quot;sort&quot;: [ # List of dimensions or metrics based on which Analytics data is sorted.
-        &quot;A String&quot;,
-      ],
-      &quot;start-date&quot;: &quot;A String&quot;, # Start date.
-      &quot;end-date&quot;: &quot;A String&quot;, # End date.
-      &quot;dimensions&quot;: &quot;A String&quot;, # List of analytics dimensions.
-    },
-    &quot;profileInfo&quot;: { # Information for the view (profile), for which the Analytics data was requested.
-      &quot;webPropertyId&quot;: &quot;A String&quot;, # Web Property ID to which this view (profile) belongs.
-      &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
-      &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for the web property to which this view (profile) belongs.
-      &quot;profileName&quot;: &quot;A String&quot;, # View (Profile) name.
-      &quot;profileId&quot;: &quot;A String&quot;, # View (Profile) ID.
-      &quot;tableId&quot;: &quot;A String&quot;, # Table ID for view (profile).
-    },
-    &quot;dataLastRefreshed&quot;: &quot;A String&quot;, # The last refreshed time in seconds for Analytics data.
-    &quot;sampleSize&quot;: &quot;A String&quot;, # The number of samples used to calculate the result.
-    &quot;kind&quot;: &quot;analytics#gaData&quot;, # Resource type.
-    &quot;columnHeaders&quot;: [ # Column headers that list dimension names followed by the metric names. The order of dimensions and metrics is same as specified in the request.
-      {
-        &quot;dataType&quot;: &quot;A String&quot;, # Data type. Dimension column headers have only STRING as the data type. Metric column headers have data types for metric values such as INTEGER, DOUBLE, CURRENCY etc.
-        &quot;columnType&quot;: &quot;A String&quot;, # Column Type. Either DIMENSION or METRIC.
-        &quot;name&quot;: &quot;A String&quot;, # Column name.
-      },
-    ],
-    &quot;totalResults&quot;: 42, # The total number of rows for the query, regardless of the number of rows in the response.
-    &quot;previousLink&quot;: &quot;A String&quot;, # Link to previous page for this Analytics data query.
+    &quot;itemsPerPage&quot;: 42, # The maximum number of rows the response can contain, regardless of the actual number of rows returned. Its value ranges from 1 to 10,000 with a value of 1000 by default, or otherwise specified by the max-results query parameter.
     &quot;nextLink&quot;: &quot;A String&quot;, # Link to next page for this Analytics data query.
     &quot;sampleSpace&quot;: &quot;A String&quot;, # Total size of the sample space from which the samples were selected.
-    &quot;id&quot;: &quot;A String&quot;, # Unique ID for this data response.
-    &quot;itemsPerPage&quot;: 42, # The maximum number of rows the response can contain, regardless of the actual number of rows returned. Its value ranges from 1 to 10,000 with a value of 1000 by default, or otherwise specified by the max-results query parameter.
+    &quot;containsSampledData&quot;: True or False, # Determines if Analytics data contains samples.
     &quot;rows&quot;: [ # Analytics data rows, where each row contains a list of dimension values followed by the metric values. The order of dimensions and metrics is same as specified in the request.
       [
         &quot;A String&quot;,
       ],
     ],
+    &quot;id&quot;: &quot;A String&quot;, # Unique ID for this data response.
+    &quot;totalResults&quot;: 42, # The total number of rows for the query, regardless of the number of rows in the response.
+    &quot;previousLink&quot;: &quot;A String&quot;, # Link to previous page for this Analytics data query.
+    &quot;profileInfo&quot;: { # Information for the view (profile), for which the Analytics data was requested.
+      &quot;webPropertyId&quot;: &quot;A String&quot;, # Web Property ID to which this view (profile) belongs.
+      &quot;profileId&quot;: &quot;A String&quot;, # View (Profile) ID.
+      &quot;profileName&quot;: &quot;A String&quot;, # View (Profile) name.
+      &quot;tableId&quot;: &quot;A String&quot;, # Table ID for view (profile).
+      &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
+      &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for the web property to which this view (profile) belongs.
+    },
+    &quot;kind&quot;: &quot;analytics#gaData&quot;, # Resource type.
+    &quot;sampleSize&quot;: &quot;A String&quot;, # The number of samples used to calculate the result.
     &quot;totalsForAllResults&quot;: { # Total values for the requested metrics over all the results, not just the results returned in this response. The order of the metric totals is same as the metric order specified in the request.
       &quot;a_key&quot;: &quot;A String&quot;, # Key-value pair for the total value of a metric. Key is the metric name and the value is the total value for that metric.
     },
+    &quot;dataLastRefreshed&quot;: &quot;A String&quot;, # The last refreshed time in seconds for Analytics data.
+    &quot;query&quot;: { # Analytics data request query parameters.
+      &quot;filters&quot;: &quot;A String&quot;, # Comma-separated list of dimension or metric filters.
+      &quot;start-date&quot;: &quot;A String&quot;, # Start date.
+      &quot;segment&quot;: &quot;A String&quot;, # Analytics advanced segment.
+      &quot;metrics&quot;: [ # List of analytics metrics.
+        &quot;A String&quot;,
+      ],
+      &quot;start-index&quot;: 42, # Start index.
+      &quot;end-date&quot;: &quot;A String&quot;, # End date.
+      &quot;dimensions&quot;: &quot;A String&quot;, # List of analytics dimensions.
+      &quot;max-results&quot;: 42, # Maximum results per page.
+      &quot;sort&quot;: [ # List of dimensions or metrics based on which Analytics data is sorted.
+        &quot;A String&quot;,
+      ],
+      &quot;ids&quot;: &quot;A String&quot;, # Unique table ID.
+      &quot;samplingLevel&quot;: &quot;A String&quot;, # Desired sampling level
+    },
     &quot;selfLink&quot;: &quot;A String&quot;, # Link to this page.
+    &quot;columnHeaders&quot;: [ # Column headers that list dimension names followed by the metric names. The order of dimensions and metrics is same as specified in the request.
+      {
+        &quot;name&quot;: &quot;A String&quot;, # Column name.
+        &quot;dataType&quot;: &quot;A String&quot;, # Data type. Dimension column headers have only STRING as the data type. Metric column headers have data types for metric values such as INTEGER, DOUBLE, CURRENCY etc.
+        &quot;columnType&quot;: &quot;A String&quot;, # Column Type. Either DIMENSION or METRIC.
+      },
+    ],
   }</pre>
 </div>