docs: docs update (#911)

Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly:
- [ ] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/google-api-python-client/issues/new/choose) before writing your code!  That way we can discuss the change, evaluate designs, and agree on the general idea
- [ ] Ensure the tests and linter pass
- [ ] Code coverage does not decrease (if any source code was changed)
- [ ] Appropriate docs were updated (if necessary)

Fixes #<issue_number_goes_here> 🦕
diff --git a/docs/dyn/runtimeconfig_v1beta1.projects.configs.variables.html b/docs/dyn/runtimeconfig_v1beta1.projects.configs.variables.html
index 99ed24d..680a0e2 100644
--- a/docs/dyn/runtimeconfig_v1beta1.projects.configs.variables.html
+++ b/docs/dyn/runtimeconfig_v1beta1.projects.configs.variables.html
@@ -78,13 +78,13 @@
   <code><a href="#create">create(parent, body=None, requestId=None, x__xgafv=None)</a></code></p>
 <p class="firstline">Creates a variable within the given configuration. You cannot create</p>
 <p class="toc_element">
-  <code><a href="#delete">delete(name, x__xgafv=None, recursive=None)</a></code></p>
+  <code><a href="#delete">delete(name, recursive=None, x__xgafv=None)</a></code></p>
 <p class="firstline">Deletes a variable or multiple variables.</p>
 <p class="toc_element">
   <code><a href="#get">get(name, x__xgafv=None)</a></code></p>
 <p class="firstline">Gets information about a single variable.</p>
 <p class="toc_element">
-  <code><a href="#list">list(parent, pageSize=None, returnValues=None, x__xgafv=None, pageToken=None, filter=None)</a></code></p>
+  <code><a href="#list">list(parent, filter=None, pageToken=None, returnValues=None, pageSize=None, x__xgafv=None)</a></code></p>
 <p class="firstline">Lists variables within given a configuration, matching any provided</p>
 <p class="toc_element">
   <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
@@ -119,41 +119,41 @@
     The object takes the form of:
 
 { # Describes a single variable within a RuntimeConfig resource.
-    # The name denotes the hierarchical variable name. For example,
-    # `ports/serving_port` is a valid variable name. The variable value is an
-    # opaque string and only leaf variables can have values (that is, variables
-    # that do not have any child variables).
-  "text": "A String", # The string value of the variable. The length of the value must be less
-      # than 4096 bytes. Empty values are also accepted. For example,
-      # `text: "my text value"`. The string must be valid UTF-8.
-  "updateTime": "A String", # Output only. The time of the last variable update.
-      # Timestamp will be UTC timestamp.
-  "state": "A String", # Output only. The current state of the variable. The variable state
-      # indicates the outcome of the `variables().watch` call and is visible
-      # through the `get` and `list` calls.
-  "value": "A String", # The binary value of the variable. The length of the value must be less
-      # than 4096 bytes. Empty values are also accepted. The value must be
-      # base64 encoded, and must comply with IETF RFC4648
-      # (https://www.ietf.org/rfc/rfc4648.txt). Only one of `value` or `text`
-      # can be set.
-  "name": "A String", # The name of the variable resource, in the format:
-      # 
-      #     projects/[PROJECT_ID]/configs/[CONFIG_NAME]/variables/[VARIABLE_NAME]
-      # 
-      # The `[PROJECT_ID]` must be a valid project ID, `[CONFIG_NAME]` must be a
-      # valid RuntimeConfig resource and `[VARIABLE_NAME]` follows Unix file system
-      # file path naming.
-      # 
-      # The `[VARIABLE_NAME]` can contain ASCII letters, numbers, slashes and
-      # dashes. Slashes are used as path element separators and are not part of the
-      # `[VARIABLE_NAME]` itself, so `[VARIABLE_NAME]` must contain at least one
-      # non-slash character. Multiple slashes are coalesced into single slash
-      # character. Each path segment should match
-      # [0-9A-Za-z](?:[_.A-Za-z0-9-]{0,62}[_.A-Za-z0-9])? regular expression.
-      # The length of a `[VARIABLE_NAME]` must be less than 256 characters.
-      # 
-      # Once you create a variable, you cannot change the variable name.
-}
+      # The name denotes the hierarchical variable name. For example,
+      # `ports/serving_port` is a valid variable name. The variable value is an
+      # opaque string and only leaf variables can have values (that is, variables
+      # that do not have any child variables).
+    &quot;value&quot;: &quot;A String&quot;, # The binary value of the variable. The length of the value must be less
+        # than 4096 bytes. Empty values are also accepted. The value must be
+        # base64 encoded, and must comply with IETF RFC4648
+        # (https://www.ietf.org/rfc/rfc4648.txt). Only one of `value` or `text`
+        # can be set.
+    &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The time of the last variable update.
+        # Timestamp will be UTC timestamp.
+    &quot;state&quot;: &quot;A String&quot;, # Output only. The current state of the variable. The variable state
+        # indicates the outcome of the `variables().watch` call and is visible
+        # through the `get` and `list` calls.
+    &quot;name&quot;: &quot;A String&quot;, # The name of the variable resource, in the format:
+        # 
+        #     projects/[PROJECT_ID]/configs/[CONFIG_NAME]/variables/[VARIABLE_NAME]
+        # 
+        # The `[PROJECT_ID]` must be a valid project ID, `[CONFIG_NAME]` must be a
+        # valid RuntimeConfig resource and `[VARIABLE_NAME]` follows Unix file system
+        # file path naming.
+        # 
+        # The `[VARIABLE_NAME]` can contain ASCII letters, numbers, slashes and
+        # dashes. Slashes are used as path element separators and are not part of the
+        # `[VARIABLE_NAME]` itself, so `[VARIABLE_NAME]` must contain at least one
+        # non-slash character. Multiple slashes are coalesced into single slash
+        # character. Each path segment should match
+        # [0-9A-Za-z](?:[_.A-Za-z0-9-]{0,62}[_.A-Za-z0-9])? regular expression.
+        # The length of a `[VARIABLE_NAME]` must be less than 256 characters.
+        # 
+        # Once you create a variable, you cannot change the variable name.
+    &quot;text&quot;: &quot;A String&quot;, # The string value of the variable. The length of the value must be less
+        # than 4096 bytes. Empty values are also accepted. For example,
+        # `text: &quot;my text value&quot;`. The string must be valid UTF-8.
+  }
 
   requestId: string, An optional but recommended unique `request_id`. If the server
 receives two `create()` requests  with the same
@@ -174,45 +174,45 @@
   An object of the form:
 
     { # Describes a single variable within a RuntimeConfig resource.
-      # The name denotes the hierarchical variable name. For example,
-      # `ports/serving_port` is a valid variable name. The variable value is an
-      # opaque string and only leaf variables can have values (that is, variables
-      # that do not have any child variables).
-    "text": "A String", # The string value of the variable. The length of the value must be less
-        # than 4096 bytes. Empty values are also accepted. For example,
-        # `text: "my text value"`. The string must be valid UTF-8.
-    "updateTime": "A String", # Output only. The time of the last variable update.
-        # Timestamp will be UTC timestamp.
-    "state": "A String", # Output only. The current state of the variable. The variable state
-        # indicates the outcome of the `variables().watch` call and is visible
-        # through the `get` and `list` calls.
-    "value": "A String", # The binary value of the variable. The length of the value must be less
-        # than 4096 bytes. Empty values are also accepted. The value must be
-        # base64 encoded, and must comply with IETF RFC4648
-        # (https://www.ietf.org/rfc/rfc4648.txt). Only one of `value` or `text`
-        # can be set.
-    "name": "A String", # The name of the variable resource, in the format:
-        #
-        #     projects/[PROJECT_ID]/configs/[CONFIG_NAME]/variables/[VARIABLE_NAME]
-        #
-        # The `[PROJECT_ID]` must be a valid project ID, `[CONFIG_NAME]` must be a
-        # valid RuntimeConfig resource and `[VARIABLE_NAME]` follows Unix file system
-        # file path naming.
-        #
-        # The `[VARIABLE_NAME]` can contain ASCII letters, numbers, slashes and
-        # dashes. Slashes are used as path element separators and are not part of the
-        # `[VARIABLE_NAME]` itself, so `[VARIABLE_NAME]` must contain at least one
-        # non-slash character. Multiple slashes are coalesced into single slash
-        # character. Each path segment should match
-        # [0-9A-Za-z](?:[_.A-Za-z0-9-]{0,62}[_.A-Za-z0-9])? regular expression.
-        # The length of a `[VARIABLE_NAME]` must be less than 256 characters.
-        #
-        # Once you create a variable, you cannot change the variable name.
-  }</pre>
+        # The name denotes the hierarchical variable name. For example,
+        # `ports/serving_port` is a valid variable name. The variable value is an
+        # opaque string and only leaf variables can have values (that is, variables
+        # that do not have any child variables).
+      &quot;value&quot;: &quot;A String&quot;, # The binary value of the variable. The length of the value must be less
+          # than 4096 bytes. Empty values are also accepted. The value must be
+          # base64 encoded, and must comply with IETF RFC4648
+          # (https://www.ietf.org/rfc/rfc4648.txt). Only one of `value` or `text`
+          # can be set.
+      &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The time of the last variable update.
+          # Timestamp will be UTC timestamp.
+      &quot;state&quot;: &quot;A String&quot;, # Output only. The current state of the variable. The variable state
+          # indicates the outcome of the `variables().watch` call and is visible
+          # through the `get` and `list` calls.
+      &quot;name&quot;: &quot;A String&quot;, # The name of the variable resource, in the format:
+          #
+          #     projects/[PROJECT_ID]/configs/[CONFIG_NAME]/variables/[VARIABLE_NAME]
+          #
+          # The `[PROJECT_ID]` must be a valid project ID, `[CONFIG_NAME]` must be a
+          # valid RuntimeConfig resource and `[VARIABLE_NAME]` follows Unix file system
+          # file path naming.
+          #
+          # The `[VARIABLE_NAME]` can contain ASCII letters, numbers, slashes and
+          # dashes. Slashes are used as path element separators and are not part of the
+          # `[VARIABLE_NAME]` itself, so `[VARIABLE_NAME]` must contain at least one
+          # non-slash character. Multiple slashes are coalesced into single slash
+          # character. Each path segment should match
+          # [0-9A-Za-z](?:[_.A-Za-z0-9-]{0,62}[_.A-Za-z0-9])? regular expression.
+          # The length of a `[VARIABLE_NAME]` must be less than 256 characters.
+          #
+          # Once you create a variable, you cannot change the variable name.
+      &quot;text&quot;: &quot;A String&quot;, # The string value of the variable. The length of the value must be less
+          # than 4096 bytes. Empty values are also accepted. For example,
+          # `text: &quot;my text value&quot;`. The string must be valid UTF-8.
+    }</pre>
 </div>
 
 <div class="method">
-    <code class="details" id="delete">delete(name, x__xgafv=None, recursive=None)</code>
+    <code class="details" id="delete">delete(name, recursive=None, x__xgafv=None)</code>
   <pre>Deletes a variable or multiple variables.
 
 If you specify a variable name, then that variable is deleted. If you
@@ -224,12 +224,12 @@
   name: string, The name of the variable to delete, in the format:
 
 `projects/[PROJECT_ID]/configs/[CONFIG_NAME]/variables/[VARIABLE_NAME]` (required)
+  recursive: boolean, Set to `true` to recursively delete multiple variables with the same
+prefix.
   x__xgafv: string, V1 error format.
     Allowed values
       1 - v1 error format
       2 - v2 error format
-  recursive: boolean, Set to `true` to recursively delete multiple variables with the same
-prefix.
 
 Returns:
   An object of the form:
@@ -263,45 +263,45 @@
   An object of the form:
 
     { # Describes a single variable within a RuntimeConfig resource.
-      # The name denotes the hierarchical variable name. For example,
-      # `ports/serving_port` is a valid variable name. The variable value is an
-      # opaque string and only leaf variables can have values (that is, variables
-      # that do not have any child variables).
-    "text": "A String", # The string value of the variable. The length of the value must be less
-        # than 4096 bytes. Empty values are also accepted. For example,
-        # `text: "my text value"`. The string must be valid UTF-8.
-    "updateTime": "A String", # Output only. The time of the last variable update.
-        # Timestamp will be UTC timestamp.
-    "state": "A String", # Output only. The current state of the variable. The variable state
-        # indicates the outcome of the `variables().watch` call and is visible
-        # through the `get` and `list` calls.
-    "value": "A String", # The binary value of the variable. The length of the value must be less
-        # than 4096 bytes. Empty values are also accepted. The value must be
-        # base64 encoded, and must comply with IETF RFC4648
-        # (https://www.ietf.org/rfc/rfc4648.txt). Only one of `value` or `text`
-        # can be set.
-    "name": "A String", # The name of the variable resource, in the format:
-        #
-        #     projects/[PROJECT_ID]/configs/[CONFIG_NAME]/variables/[VARIABLE_NAME]
-        #
-        # The `[PROJECT_ID]` must be a valid project ID, `[CONFIG_NAME]` must be a
-        # valid RuntimeConfig resource and `[VARIABLE_NAME]` follows Unix file system
-        # file path naming.
-        #
-        # The `[VARIABLE_NAME]` can contain ASCII letters, numbers, slashes and
-        # dashes. Slashes are used as path element separators and are not part of the
-        # `[VARIABLE_NAME]` itself, so `[VARIABLE_NAME]` must contain at least one
-        # non-slash character. Multiple slashes are coalesced into single slash
-        # character. Each path segment should match
-        # [0-9A-Za-z](?:[_.A-Za-z0-9-]{0,62}[_.A-Za-z0-9])? regular expression.
-        # The length of a `[VARIABLE_NAME]` must be less than 256 characters.
-        #
-        # Once you create a variable, you cannot change the variable name.
-  }</pre>
+        # The name denotes the hierarchical variable name. For example,
+        # `ports/serving_port` is a valid variable name. The variable value is an
+        # opaque string and only leaf variables can have values (that is, variables
+        # that do not have any child variables).
+      &quot;value&quot;: &quot;A String&quot;, # The binary value of the variable. The length of the value must be less
+          # than 4096 bytes. Empty values are also accepted. The value must be
+          # base64 encoded, and must comply with IETF RFC4648
+          # (https://www.ietf.org/rfc/rfc4648.txt). Only one of `value` or `text`
+          # can be set.
+      &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The time of the last variable update.
+          # Timestamp will be UTC timestamp.
+      &quot;state&quot;: &quot;A String&quot;, # Output only. The current state of the variable. The variable state
+          # indicates the outcome of the `variables().watch` call and is visible
+          # through the `get` and `list` calls.
+      &quot;name&quot;: &quot;A String&quot;, # The name of the variable resource, in the format:
+          #
+          #     projects/[PROJECT_ID]/configs/[CONFIG_NAME]/variables/[VARIABLE_NAME]
+          #
+          # The `[PROJECT_ID]` must be a valid project ID, `[CONFIG_NAME]` must be a
+          # valid RuntimeConfig resource and `[VARIABLE_NAME]` follows Unix file system
+          # file path naming.
+          #
+          # The `[VARIABLE_NAME]` can contain ASCII letters, numbers, slashes and
+          # dashes. Slashes are used as path element separators and are not part of the
+          # `[VARIABLE_NAME]` itself, so `[VARIABLE_NAME]` must contain at least one
+          # non-slash character. Multiple slashes are coalesced into single slash
+          # character. Each path segment should match
+          # [0-9A-Za-z](?:[_.A-Za-z0-9-]{0,62}[_.A-Za-z0-9])? regular expression.
+          # The length of a `[VARIABLE_NAME]` must be less than 256 characters.
+          #
+          # Once you create a variable, you cannot change the variable name.
+      &quot;text&quot;: &quot;A String&quot;, # The string value of the variable. The length of the value must be less
+          # than 4096 bytes. Empty values are also accepted. For example,
+          # `text: &quot;my text value&quot;`. The string must be valid UTF-8.
+    }</pre>
 </div>
 
 <div class="method">
-    <code class="details" id="list">list(parent, pageSize=None, returnValues=None, x__xgafv=None, pageToken=None, filter=None)</code>
+    <code class="details" id="list">list(parent, filter=None, pageToken=None, returnValues=None, pageSize=None, x__xgafv=None)</code>
   <pre>Lists variables within given a configuration, matching any provided
 filters. This only lists variable names, not the values, unless
 `return_values` is true, in which case only variables that user has IAM
@@ -313,69 +313,69 @@
 format:
 
 `projects/[PROJECT_ID]/configs/[CONFIG_NAME]` (required)
-  pageSize: integer, Specifies the number of results to return per page. If there are fewer
-elements than the specified number, returns all elements.
+  filter: string, Filters variables by matching the specified filter. For example:
+
+`projects/example-project/config/[CONFIG_NAME]/variables/example-variable`.
+  pageToken: string, Specifies a page token to use. Set `pageToken` to a `nextPageToken`
+returned by a previous list request to get the next page of results.
   returnValues: boolean, The flag indicates whether the user wants to return values of variables.
 If true, then only those variables that user has IAM GetVariable permission
 will be returned along with their values.
+  pageSize: integer, Specifies the number of results to return per page. If there are fewer
+elements than the specified number, returns all elements.
   x__xgafv: string, V1 error format.
     Allowed values
       1 - v1 error format
       2 - v2 error format
-  pageToken: string, Specifies a page token to use. Set `pageToken` to a `nextPageToken`
-returned by a previous list request to get the next page of results.
-  filter: string, Filters variables by matching the specified filter. For example:
-
-`projects/example-project/config/[CONFIG_NAME]/variables/example-variable`.
 
 Returns:
   An object of the form:
 
     { # Response for the `ListVariables()` method.
-    "nextPageToken": "A String", # This token allows you to get the next page of results for list requests.
+    &quot;variables&quot;: [ # A list of variables and their values. The order of returned variable
+        # objects is arbitrary.
+      { # Describes a single variable within a RuntimeConfig resource.
+            # The name denotes the hierarchical variable name. For example,
+            # `ports/serving_port` is a valid variable name. The variable value is an
+            # opaque string and only leaf variables can have values (that is, variables
+            # that do not have any child variables).
+          &quot;value&quot;: &quot;A String&quot;, # The binary value of the variable. The length of the value must be less
+              # than 4096 bytes. Empty values are also accepted. The value must be
+              # base64 encoded, and must comply with IETF RFC4648
+              # (https://www.ietf.org/rfc/rfc4648.txt). Only one of `value` or `text`
+              # can be set.
+          &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The time of the last variable update.
+              # Timestamp will be UTC timestamp.
+          &quot;state&quot;: &quot;A String&quot;, # Output only. The current state of the variable. The variable state
+              # indicates the outcome of the `variables().watch` call and is visible
+              # through the `get` and `list` calls.
+          &quot;name&quot;: &quot;A String&quot;, # The name of the variable resource, in the format:
+              #
+              #     projects/[PROJECT_ID]/configs/[CONFIG_NAME]/variables/[VARIABLE_NAME]
+              #
+              # The `[PROJECT_ID]` must be a valid project ID, `[CONFIG_NAME]` must be a
+              # valid RuntimeConfig resource and `[VARIABLE_NAME]` follows Unix file system
+              # file path naming.
+              #
+              # The `[VARIABLE_NAME]` can contain ASCII letters, numbers, slashes and
+              # dashes. Slashes are used as path element separators and are not part of the
+              # `[VARIABLE_NAME]` itself, so `[VARIABLE_NAME]` must contain at least one
+              # non-slash character. Multiple slashes are coalesced into single slash
+              # character. Each path segment should match
+              # [0-9A-Za-z](?:[_.A-Za-z0-9-]{0,62}[_.A-Za-z0-9])? regular expression.
+              # The length of a `[VARIABLE_NAME]` must be less than 256 characters.
+              #
+              # Once you create a variable, you cannot change the variable name.
+          &quot;text&quot;: &quot;A String&quot;, # The string value of the variable. The length of the value must be less
+              # than 4096 bytes. Empty values are also accepted. For example,
+              # `text: &quot;my text value&quot;`. The string must be valid UTF-8.
+        },
+    ],
+    &quot;nextPageToken&quot;: &quot;A String&quot;, # This token allows you to get the next page of results for list requests.
         # If the number of results is larger than `pageSize`, use the `nextPageToken`
         # as a value for the query parameter `pageToken` in the next list request.
         # Subsequent list requests will have their own `nextPageToken` to continue
         # paging through the results
-    "variables": [ # A list of variables and their values. The order of returned variable
-        # objects is arbitrary.
-      { # Describes a single variable within a RuntimeConfig resource.
-          # The name denotes the hierarchical variable name. For example,
-          # `ports/serving_port` is a valid variable name. The variable value is an
-          # opaque string and only leaf variables can have values (that is, variables
-          # that do not have any child variables).
-        "text": "A String", # The string value of the variable. The length of the value must be less
-            # than 4096 bytes. Empty values are also accepted. For example,
-            # `text: "my text value"`. The string must be valid UTF-8.
-        "updateTime": "A String", # Output only. The time of the last variable update.
-            # Timestamp will be UTC timestamp.
-        "state": "A String", # Output only. The current state of the variable. The variable state
-            # indicates the outcome of the `variables().watch` call and is visible
-            # through the `get` and `list` calls.
-        "value": "A String", # The binary value of the variable. The length of the value must be less
-            # than 4096 bytes. Empty values are also accepted. The value must be
-            # base64 encoded, and must comply with IETF RFC4648
-            # (https://www.ietf.org/rfc/rfc4648.txt). Only one of `value` or `text`
-            # can be set.
-        "name": "A String", # The name of the variable resource, in the format:
-            #
-            #     projects/[PROJECT_ID]/configs/[CONFIG_NAME]/variables/[VARIABLE_NAME]
-            #
-            # The `[PROJECT_ID]` must be a valid project ID, `[CONFIG_NAME]` must be a
-            # valid RuntimeConfig resource and `[VARIABLE_NAME]` follows Unix file system
-            # file path naming.
-            #
-            # The `[VARIABLE_NAME]` can contain ASCII letters, numbers, slashes and
-            # dashes. Slashes are used as path element separators and are not part of the
-            # `[VARIABLE_NAME]` itself, so `[VARIABLE_NAME]` must contain at least one
-            # non-slash character. Multiple slashes are coalesced into single slash
-            # character. Each path segment should match
-            # [0-9A-Za-z](?:[_.A-Za-z0-9-]{0,62}[_.A-Za-z0-9])? regular expression.
-            # The length of a `[VARIABLE_NAME]` must be less than 256 characters.
-            #
-            # Once you create a variable, you cannot change the variable name.
-      },
-    ],
   }</pre>
 </div>
 
@@ -388,7 +388,7 @@
   previous_response: The response from the request for the previous page. (required)
 
 Returns:
-  A request object that you can call 'execute()' on to request the next
+  A request object that you can call &#x27;execute()&#x27; on to request the next
   page. Returns None if there are no more items in the collection.
     </pre>
 </div>
@@ -401,7 +401,7 @@
 
 Note: This operation is designed to be used for building permission-aware
 UIs and command-line tools, not for authorization checking. This operation
-may "fail open" without warning.
+may &quot;fail open&quot; without warning.
 
 Args:
   resource: string, REQUIRED: The resource for which the policy detail is being requested.
@@ -410,11 +410,11 @@
     The object takes the form of:
 
 { # Request message for `TestIamPermissions` method.
-    "permissions": [ # The set of permissions to check for the `resource`. Permissions with
-        # wildcards (such as '*' or 'storage.*') are not allowed. For more
+    &quot;permissions&quot;: [ # The set of permissions to check for the `resource`. Permissions with
+        # wildcards (such as &#x27;*&#x27; or &#x27;storage.*&#x27;) are not allowed. For more
         # information see
         # [IAM Overview](https://cloud.google.com/iam/docs/overview#permissions).
-      "A String",
+      &quot;A String&quot;,
     ],
   }
 
@@ -427,9 +427,9 @@
   An object of the form:
 
     { # Response message for `TestIamPermissions` method.
-    "permissions": [ # A subset of `TestPermissionsRequest.permissions` that the caller is
+    &quot;permissions&quot;: [ # A subset of `TestPermissionsRequest.permissions` that the caller is
         # allowed.
-      "A String",
+      &quot;A String&quot;,
     ],
   }</pre>
 </div>
@@ -446,41 +446,41 @@
     The object takes the form of:
 
 { # Describes a single variable within a RuntimeConfig resource.
-    # The name denotes the hierarchical variable name. For example,
-    # `ports/serving_port` is a valid variable name. The variable value is an
-    # opaque string and only leaf variables can have values (that is, variables
-    # that do not have any child variables).
-  "text": "A String", # The string value of the variable. The length of the value must be less
-      # than 4096 bytes. Empty values are also accepted. For example,
-      # `text: "my text value"`. The string must be valid UTF-8.
-  "updateTime": "A String", # Output only. The time of the last variable update.
-      # Timestamp will be UTC timestamp.
-  "state": "A String", # Output only. The current state of the variable. The variable state
-      # indicates the outcome of the `variables().watch` call and is visible
-      # through the `get` and `list` calls.
-  "value": "A String", # The binary value of the variable. The length of the value must be less
-      # than 4096 bytes. Empty values are also accepted. The value must be
-      # base64 encoded, and must comply with IETF RFC4648
-      # (https://www.ietf.org/rfc/rfc4648.txt). Only one of `value` or `text`
-      # can be set.
-  "name": "A String", # The name of the variable resource, in the format:
-      # 
-      #     projects/[PROJECT_ID]/configs/[CONFIG_NAME]/variables/[VARIABLE_NAME]
-      # 
-      # The `[PROJECT_ID]` must be a valid project ID, `[CONFIG_NAME]` must be a
-      # valid RuntimeConfig resource and `[VARIABLE_NAME]` follows Unix file system
-      # file path naming.
-      # 
-      # The `[VARIABLE_NAME]` can contain ASCII letters, numbers, slashes and
-      # dashes. Slashes are used as path element separators and are not part of the
-      # `[VARIABLE_NAME]` itself, so `[VARIABLE_NAME]` must contain at least one
-      # non-slash character. Multiple slashes are coalesced into single slash
-      # character. Each path segment should match
-      # [0-9A-Za-z](?:[_.A-Za-z0-9-]{0,62}[_.A-Za-z0-9])? regular expression.
-      # The length of a `[VARIABLE_NAME]` must be less than 256 characters.
-      # 
-      # Once you create a variable, you cannot change the variable name.
-}
+      # The name denotes the hierarchical variable name. For example,
+      # `ports/serving_port` is a valid variable name. The variable value is an
+      # opaque string and only leaf variables can have values (that is, variables
+      # that do not have any child variables).
+    &quot;value&quot;: &quot;A String&quot;, # The binary value of the variable. The length of the value must be less
+        # than 4096 bytes. Empty values are also accepted. The value must be
+        # base64 encoded, and must comply with IETF RFC4648
+        # (https://www.ietf.org/rfc/rfc4648.txt). Only one of `value` or `text`
+        # can be set.
+    &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The time of the last variable update.
+        # Timestamp will be UTC timestamp.
+    &quot;state&quot;: &quot;A String&quot;, # Output only. The current state of the variable. The variable state
+        # indicates the outcome of the `variables().watch` call and is visible
+        # through the `get` and `list` calls.
+    &quot;name&quot;: &quot;A String&quot;, # The name of the variable resource, in the format:
+        # 
+        #     projects/[PROJECT_ID]/configs/[CONFIG_NAME]/variables/[VARIABLE_NAME]
+        # 
+        # The `[PROJECT_ID]` must be a valid project ID, `[CONFIG_NAME]` must be a
+        # valid RuntimeConfig resource and `[VARIABLE_NAME]` follows Unix file system
+        # file path naming.
+        # 
+        # The `[VARIABLE_NAME]` can contain ASCII letters, numbers, slashes and
+        # dashes. Slashes are used as path element separators and are not part of the
+        # `[VARIABLE_NAME]` itself, so `[VARIABLE_NAME]` must contain at least one
+        # non-slash character. Multiple slashes are coalesced into single slash
+        # character. Each path segment should match
+        # [0-9A-Za-z](?:[_.A-Za-z0-9-]{0,62}[_.A-Za-z0-9])? regular expression.
+        # The length of a `[VARIABLE_NAME]` must be less than 256 characters.
+        # 
+        # Once you create a variable, you cannot change the variable name.
+    &quot;text&quot;: &quot;A String&quot;, # The string value of the variable. The length of the value must be less
+        # than 4096 bytes. Empty values are also accepted. For example,
+        # `text: &quot;my text value&quot;`. The string must be valid UTF-8.
+  }
 
   x__xgafv: string, V1 error format.
     Allowed values
@@ -491,46 +491,46 @@
   An object of the form:
 
     { # Describes a single variable within a RuntimeConfig resource.
-      # The name denotes the hierarchical variable name. For example,
-      # `ports/serving_port` is a valid variable name. The variable value is an
-      # opaque string and only leaf variables can have values (that is, variables
-      # that do not have any child variables).
-    "text": "A String", # The string value of the variable. The length of the value must be less
-        # than 4096 bytes. Empty values are also accepted. For example,
-        # `text: "my text value"`. The string must be valid UTF-8.
-    "updateTime": "A String", # Output only. The time of the last variable update.
-        # Timestamp will be UTC timestamp.
-    "state": "A String", # Output only. The current state of the variable. The variable state
-        # indicates the outcome of the `variables().watch` call and is visible
-        # through the `get` and `list` calls.
-    "value": "A String", # The binary value of the variable. The length of the value must be less
-        # than 4096 bytes. Empty values are also accepted. The value must be
-        # base64 encoded, and must comply with IETF RFC4648
-        # (https://www.ietf.org/rfc/rfc4648.txt). Only one of `value` or `text`
-        # can be set.
-    "name": "A String", # The name of the variable resource, in the format:
-        #
-        #     projects/[PROJECT_ID]/configs/[CONFIG_NAME]/variables/[VARIABLE_NAME]
-        #
-        # The `[PROJECT_ID]` must be a valid project ID, `[CONFIG_NAME]` must be a
-        # valid RuntimeConfig resource and `[VARIABLE_NAME]` follows Unix file system
-        # file path naming.
-        #
-        # The `[VARIABLE_NAME]` can contain ASCII letters, numbers, slashes and
-        # dashes. Slashes are used as path element separators and are not part of the
-        # `[VARIABLE_NAME]` itself, so `[VARIABLE_NAME]` must contain at least one
-        # non-slash character. Multiple slashes are coalesced into single slash
-        # character. Each path segment should match
-        # [0-9A-Za-z](?:[_.A-Za-z0-9-]{0,62}[_.A-Za-z0-9])? regular expression.
-        # The length of a `[VARIABLE_NAME]` must be less than 256 characters.
-        #
-        # Once you create a variable, you cannot change the variable name.
-  }</pre>
+        # The name denotes the hierarchical variable name. For example,
+        # `ports/serving_port` is a valid variable name. The variable value is an
+        # opaque string and only leaf variables can have values (that is, variables
+        # that do not have any child variables).
+      &quot;value&quot;: &quot;A String&quot;, # The binary value of the variable. The length of the value must be less
+          # than 4096 bytes. Empty values are also accepted. The value must be
+          # base64 encoded, and must comply with IETF RFC4648
+          # (https://www.ietf.org/rfc/rfc4648.txt). Only one of `value` or `text`
+          # can be set.
+      &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The time of the last variable update.
+          # Timestamp will be UTC timestamp.
+      &quot;state&quot;: &quot;A String&quot;, # Output only. The current state of the variable. The variable state
+          # indicates the outcome of the `variables().watch` call and is visible
+          # through the `get` and `list` calls.
+      &quot;name&quot;: &quot;A String&quot;, # The name of the variable resource, in the format:
+          #
+          #     projects/[PROJECT_ID]/configs/[CONFIG_NAME]/variables/[VARIABLE_NAME]
+          #
+          # The `[PROJECT_ID]` must be a valid project ID, `[CONFIG_NAME]` must be a
+          # valid RuntimeConfig resource and `[VARIABLE_NAME]` follows Unix file system
+          # file path naming.
+          #
+          # The `[VARIABLE_NAME]` can contain ASCII letters, numbers, slashes and
+          # dashes. Slashes are used as path element separators and are not part of the
+          # `[VARIABLE_NAME]` itself, so `[VARIABLE_NAME]` must contain at least one
+          # non-slash character. Multiple slashes are coalesced into single slash
+          # character. Each path segment should match
+          # [0-9A-Za-z](?:[_.A-Za-z0-9-]{0,62}[_.A-Za-z0-9])? regular expression.
+          # The length of a `[VARIABLE_NAME]` must be less than 256 characters.
+          #
+          # Once you create a variable, you cannot change the variable name.
+      &quot;text&quot;: &quot;A String&quot;, # The string value of the variable. The length of the value must be less
+          # than 4096 bytes. Empty values are also accepted. For example,
+          # `text: &quot;my text value&quot;`. The string must be valid UTF-8.
+    }</pre>
 </div>
 
 <div class="method">
     <code class="details" id="watch">watch(name, body=None, x__xgafv=None)</code>
-  <pre>Watches a specific variable and waits for a change in the variable's value.
+  <pre>Watches a specific variable and waits for a change in the variable&#x27;s value.
 When there is a change, this method returns the new value or times out.
 
 If a variable is deleted while being watched, the `variableState` state is
@@ -553,7 +553,7 @@
     The object takes the form of:
 
 { # Request for the `WatchVariable()` method.
-    "newerThan": "A String", # If specified, checks the current timestamp of the variable and if the
+    &quot;newerThan&quot;: &quot;A String&quot;, # If specified, checks the current timestamp of the variable and if the
         # current timestamp is newer than `newerThan` timestamp, the method returns
         # immediately.
         # 
@@ -570,41 +570,41 @@
   An object of the form:
 
     { # Describes a single variable within a RuntimeConfig resource.
-      # The name denotes the hierarchical variable name. For example,
-      # `ports/serving_port` is a valid variable name. The variable value is an
-      # opaque string and only leaf variables can have values (that is, variables
-      # that do not have any child variables).
-    "text": "A String", # The string value of the variable. The length of the value must be less
-        # than 4096 bytes. Empty values are also accepted. For example,
-        # `text: "my text value"`. The string must be valid UTF-8.
-    "updateTime": "A String", # Output only. The time of the last variable update.
-        # Timestamp will be UTC timestamp.
-    "state": "A String", # Output only. The current state of the variable. The variable state
-        # indicates the outcome of the `variables().watch` call and is visible
-        # through the `get` and `list` calls.
-    "value": "A String", # The binary value of the variable. The length of the value must be less
-        # than 4096 bytes. Empty values are also accepted. The value must be
-        # base64 encoded, and must comply with IETF RFC4648
-        # (https://www.ietf.org/rfc/rfc4648.txt). Only one of `value` or `text`
-        # can be set.
-    "name": "A String", # The name of the variable resource, in the format:
-        #
-        #     projects/[PROJECT_ID]/configs/[CONFIG_NAME]/variables/[VARIABLE_NAME]
-        #
-        # The `[PROJECT_ID]` must be a valid project ID, `[CONFIG_NAME]` must be a
-        # valid RuntimeConfig resource and `[VARIABLE_NAME]` follows Unix file system
-        # file path naming.
-        #
-        # The `[VARIABLE_NAME]` can contain ASCII letters, numbers, slashes and
-        # dashes. Slashes are used as path element separators and are not part of the
-        # `[VARIABLE_NAME]` itself, so `[VARIABLE_NAME]` must contain at least one
-        # non-slash character. Multiple slashes are coalesced into single slash
-        # character. Each path segment should match
-        # [0-9A-Za-z](?:[_.A-Za-z0-9-]{0,62}[_.A-Za-z0-9])? regular expression.
-        # The length of a `[VARIABLE_NAME]` must be less than 256 characters.
-        #
-        # Once you create a variable, you cannot change the variable name.
-  }</pre>
+        # The name denotes the hierarchical variable name. For example,
+        # `ports/serving_port` is a valid variable name. The variable value is an
+        # opaque string and only leaf variables can have values (that is, variables
+        # that do not have any child variables).
+      &quot;value&quot;: &quot;A String&quot;, # The binary value of the variable. The length of the value must be less
+          # than 4096 bytes. Empty values are also accepted. The value must be
+          # base64 encoded, and must comply with IETF RFC4648
+          # (https://www.ietf.org/rfc/rfc4648.txt). Only one of `value` or `text`
+          # can be set.
+      &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The time of the last variable update.
+          # Timestamp will be UTC timestamp.
+      &quot;state&quot;: &quot;A String&quot;, # Output only. The current state of the variable. The variable state
+          # indicates the outcome of the `variables().watch` call and is visible
+          # through the `get` and `list` calls.
+      &quot;name&quot;: &quot;A String&quot;, # The name of the variable resource, in the format:
+          #
+          #     projects/[PROJECT_ID]/configs/[CONFIG_NAME]/variables/[VARIABLE_NAME]
+          #
+          # The `[PROJECT_ID]` must be a valid project ID, `[CONFIG_NAME]` must be a
+          # valid RuntimeConfig resource and `[VARIABLE_NAME]` follows Unix file system
+          # file path naming.
+          #
+          # The `[VARIABLE_NAME]` can contain ASCII letters, numbers, slashes and
+          # dashes. Slashes are used as path element separators and are not part of the
+          # `[VARIABLE_NAME]` itself, so `[VARIABLE_NAME]` must contain at least one
+          # non-slash character. Multiple slashes are coalesced into single slash
+          # character. Each path segment should match
+          # [0-9A-Za-z](?:[_.A-Za-z0-9-]{0,62}[_.A-Za-z0-9])? regular expression.
+          # The length of a `[VARIABLE_NAME]` must be less than 256 characters.
+          #
+          # Once you create a variable, you cannot change the variable name.
+      &quot;text&quot;: &quot;A String&quot;, # The string value of the variable. The length of the value must be less
+          # than 4096 bytes. Empty values are also accepted. For example,
+          # `text: &quot;my text value&quot;`. The string must be valid UTF-8.
+    }</pre>
 </div>
 
 </body></html>
\ No newline at end of file