Regen all docs. (#700)
* Stop recursing if discovery == {}
* Generate docs with 'make docs'.
diff --git a/docs/dyn/runtimeconfig_v1beta1.projects.configs.variables.html b/docs/dyn/runtimeconfig_v1beta1.projects.configs.variables.html
index edc0a7b..7d3172b 100644
--- a/docs/dyn/runtimeconfig_v1beta1.projects.configs.variables.html
+++ b/docs/dyn/runtimeconfig_v1beta1.projects.configs.variables.html
@@ -72,20 +72,20 @@
</style>
-<h1><a href="runtimeconfig_v1beta1.html">Google Cloud Runtime Configuration API</a> . <a href="runtimeconfig_v1beta1.projects.html">projects</a> . <a href="runtimeconfig_v1beta1.projects.configs.html">configs</a> . <a href="runtimeconfig_v1beta1.projects.configs.variables.html">variables</a></h1>
+<h1><a href="runtimeconfig_v1beta1.html">Cloud Runtime Configuration API</a> . <a href="runtimeconfig_v1beta1.projects.html">projects</a> . <a href="runtimeconfig_v1beta1.projects.configs.html">configs</a> . <a href="runtimeconfig_v1beta1.projects.configs.variables.html">variables</a></h1>
<h2>Instance Methods</h2>
<p class="toc_element">
<code><a href="#create">create(parent, body, 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, recursive=None, x__xgafv=None)</a></code></p>
+ <code><a href="#delete">delete(name, x__xgafv=None, recursive=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, filter=None, pageToken=None, x__xgafv=None)</a></code></p>
-<p class="firstline">Lists variables within given a configuration, matching any provided filters.</p>
+ <code><a href="#list">list(parent, pageSize=None, returnValues=None, x__xgafv=None, pageToken=None, filter=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>
<p class="firstline">Retrieves the next page of results.</p>
@@ -106,12 +106,13 @@
name that has an existing variable name as a prefix.
To learn more about creating a variable, read the
-[Setting and Getting Data](/deployment-manager/runtime-configurator/set-and-get-variables)
+[Setting and Getting
+Data](/deployment-manager/runtime-configurator/set-and-get-variables)
documentation.
Args:
parent: string, The path to the RutimeConfig resource that this variable should belong to.
-The configuration must exist beforehand; the path must by in the format:
+The configuration must exist beforehand; the path must be in the format:
`projects/[PROJECT_ID]/configs/[CONFIG_NAME]` (required)
body: object, The request body. (required)
@@ -125,27 +126,31 @@
"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.
- "state": "A String", # [Ouput 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.
+ "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. Only one of `value` or `text` can be set.
+ # 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 reource and `[VARIABLE_NAME]` follows Unix file system
+ # 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 follow RFC 1035 segment specification.
- # The length of a `[VARIABLE_NAME]` must be less than 256 bytes.
+ # 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.
}
@@ -176,34 +181,38 @@
"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.
- "state": "A String", # [Ouput 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.
+ "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. Only one of `value` or `text` can be set.
+ # 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 reource and `[VARIABLE_NAME]` follows Unix file system
+ # 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 follow RFC 1035 segment specification.
- # The length of a `[VARIABLE_NAME]` must be less than 256 bytes.
+ # 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>
<div class="method">
- <code class="details" id="delete">delete(name, recursive=None, x__xgafv=None)</code>
+ <code class="details" id="delete">delete(name, x__xgafv=None, recursive=None)</code>
<pre>Deletes a variable or multiple variables.
If you specify a variable name, then that variable is deleted. If you
@@ -215,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:
@@ -261,42 +270,47 @@
"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.
- "state": "A String", # [Ouput 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.
+ "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. Only one of `value` or `text` can be set.
+ # 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 reource and `[VARIABLE_NAME]` follows Unix file system
+ # 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 follow RFC 1035 segment specification.
- # The length of a `[VARIABLE_NAME]` must be less than 256 bytes.
+ # 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>
<div class="method">
- <code class="details" id="list">list(parent, pageSize=None, returnValues=None, filter=None, pageToken=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 permission to GetVariable
-will be returned.
+ <code class="details" id="list">list(parent, pageSize=None, returnValues=None, x__xgafv=None, pageToken=None, filter=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
+permission to GetVariable will be returned.
Args:
- parent: string, The path to the RuntimeConfig resource for which you want to list variables.
-The configuration must exist beforehand; the path must by in the format:
+ parent: string, The path to the RuntimeConfig resource for which you want to list
+variables. The configuration must exist beforehand; the path must be in the
+format:
`projects/[PROJECT_ID]/configs/[CONFIG_NAME]` (required)
pageSize: integer, Specifies the number of results to return per page. If there are fewer
@@ -304,15 +318,15 @@
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.
- 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.
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:
@@ -333,27 +347,31 @@
"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.
- "state": "A String", # [Ouput 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.
+ "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. Only one of `value` or `text` can be set.
+ # 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 reource and `[VARIABLE_NAME]` follows Unix file system
+ # 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 follow RFC 1035 segment specification.
- # The length of a `[VARIABLE_NAME]` must be less than 256 bytes.
+ # 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.
},
@@ -435,27 +453,31 @@
"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.
- "state": "A String", # [Ouput 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.
+ "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. Only one of `value` or `text` can be set.
+ # 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 reource and `[VARIABLE_NAME]` follows Unix file system
+ # 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 follow RFC 1035 segment specification.
- # The length of a `[VARIABLE_NAME]` must be less than 256 bytes.
+ # 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.
}
@@ -476,27 +498,31 @@
"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.
- "state": "A String", # [Ouput 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.
+ "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. Only one of `value` or `text` can be set.
+ # 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 reource and `[VARIABLE_NAME]` follows Unix file system
+ # 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 follow RFC 1035 segment specification.
- # The length of a `[VARIABLE_NAME]` must be less than 256 bytes.
+ # 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>
@@ -510,12 +536,13 @@
If a variable is deleted while being watched, the `variableState` state is
set to `DELETED` and the method returns the last known variable `value`.
-If you set the deadline for watching to a larger value than internal timeout
-(60 seconds), the current variable value is returned and the `variableState`
-will be `VARIABLE_STATE_UNSPECIFIED`.
+If you set the deadline for watching to a larger value than internal
+timeout (60 seconds), the current variable value is returned and the
+`variableState` will be `VARIABLE_STATE_UNSPECIFIED`.
To learn more about creating a watcher, read the
-[Watching a Variable for Changes](/deployment-manager/runtime-configurator/watching-a-variable)
+[Watching a Variable for
+Changes](/deployment-manager/runtime-configurator/watching-a-variable)
documentation.
Args:
@@ -550,27 +577,31 @@
"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.
- "state": "A String", # [Ouput 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.
+ "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. Only one of `value` or `text` can be set.
+ # 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 reource and `[VARIABLE_NAME]` follows Unix file system
+ # 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 follow RFC 1035 segment specification.
- # The length of a `[VARIABLE_NAME]` must be less than 256 bytes.
+ # 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>