Lines Matching full:variable
79 <p class="firstline">Creates a variable within the given configuration. You cannot create</p>
82 <p class="firstline">Deletes a variable or multiple variables.</p>
85 <p class="firstline">Gets information about a single variable.</p>
97 <p class="firstline">Updates an existing variable with a new value.</p>
100 <p class="firstline">Watches a specific variable and waits for a change in the variable's value.</p>
104 <pre>Creates a variable within the given configuration. You cannot create
105 a variable with a name that is a prefix of an existing variable name, or a
106 name that has an existing variable name as a prefix.
108 To learn more about creating a variable, read the
113 parent: string, The path to the RutimeConfig resource that this variable should belong to.
120 { # Describes a single variable within a RuntimeConfig resource.
121 # The name denotes the hierarchical variable name. For example,
122 # `ports/serving_port` is a valid variable name. The variable value is an
125 "text": "A String", # The string value of the variable. The length of the value must be less
128 "updateTime": "A String", # [Output Only] The time of the last variable update.
129 …"state": "A String", # [Ouput only] The current state of the variable. The variable state indicates
132 "value": "A String", # The binary value of the variable. The length of the value must be less
135 "name": "A String", # The name of the variable resource, in the format:
150 # Once you create a variable, you cannot change the variable name.
171 { # Describes a single variable within a RuntimeConfig resource.
172 # The name denotes the hierarchical variable name. For example,
173 # `ports/serving_port` is a valid variable name. The variable value is an
176 "text": "A String", # The string value of the variable. The length of the value must be less
179 "updateTime": "A String", # [Output Only] The time of the last variable update.
180 …"state": "A String", # [Ouput only] The current state of the variable. The variable state indicates
183 "value": "A String", # The binary value of the variable. The length of the value must be less
186 "name": "A String", # The name of the variable resource, in the format:
201 # Once you create a variable, you cannot change the variable name.
207 <pre>Deletes a variable or multiple variables.
209 If you specify a variable name, then that variable is deleted. If you
215 name: string, The name of the variable to delete, in the format:
242 <pre>Gets information about a single variable.
245 name: string, The name of the variable to return, in the format:
256 { # Describes a single variable within a RuntimeConfig resource.
257 # The name denotes the hierarchical variable name. For example,
258 # `ports/serving_port` is a valid variable name. The variable value is an
261 "text": "A String", # The string value of the variable. The length of the value must be less
264 "updateTime": "A String", # [Output Only] The time of the last variable update.
265 …"state": "A String", # [Ouput only] The current state of the variable. The variable state indicates
268 "value": "A String", # The binary value of the variable. The length of the value must be less
271 "name": "A String", # The name of the variable resource, in the format:
286 # Once you create a variable, you cannot change the variable name.
293 This only lists variable names, not the values, unless `return_values` is
309 `projects/example-project/config/[CONFIG_NAME]/variables/example-variable`.
326 "variables": [ # A list of variables and their values. The order of returned variable
328 { # Describes a single variable within a RuntimeConfig resource.
329 # The name denotes the hierarchical variable name. For example,
330 # `ports/serving_port` is a valid variable name. The variable value is an
333 "text": "A String", # The string value of the variable. The length of the value must be less
336 "updateTime": "A String", # [Output Only] The time of the last variable update.
337 …"state": "A String", # [Ouput only] The current state of the variable. The variable state indicates
340 … "value": "A String", # The binary value of the variable. The length of the value must be less
343 "name": "A String", # The name of the variable resource, in the format:
358 # Once you create a variable, you cannot change the variable name.
421 <pre>Updates an existing variable with a new value.
424 name: string, The name of the variable to update, in the format:
430 { # Describes a single variable within a RuntimeConfig resource.
431 # The name denotes the hierarchical variable name. For example,
432 # `ports/serving_port` is a valid variable name. The variable value is an
435 "text": "A String", # The string value of the variable. The length of the value must be less
438 "updateTime": "A String", # [Output Only] The time of the last variable update.
439 …"state": "A String", # [Ouput only] The current state of the variable. The variable state indicates
442 "value": "A String", # The binary value of the variable. The length of the value must be less
445 "name": "A String", # The name of the variable resource, in the format:
460 # Once you create a variable, you cannot change the variable name.
471 { # Describes a single variable within a RuntimeConfig resource.
472 # The name denotes the hierarchical variable name. For example,
473 # `ports/serving_port` is a valid variable name. The variable value is an
476 "text": "A String", # The string value of the variable. The length of the value must be less
479 "updateTime": "A String", # [Output Only] The time of the last variable update.
480 …"state": "A String", # [Ouput only] The current state of the variable. The variable state indicates
483 "value": "A String", # The binary value of the variable. The length of the value must be less
486 "name": "A String", # The name of the variable resource, in the format:
501 # Once you create a variable, you cannot change the variable name.
507 <pre>Watches a specific variable and waits for a change in the variable's value.
510 If a variable is deleted while being watched, the `variableState` state is
511 set to `DELETED` and the method returns the last known variable `value`.
514 (60 seconds), the current variable value is returned and the `variableState`
518 [Watching a Variable for Changes](/deployment-manager/runtime-configurator/watching-a-variable)
522 name: string, The name of the variable to watch, in the format:
529 "newerThan": "A String", # If specified, checks the current timestamp of the variable and if the
533 # If not specified or the variable has an older timestamp, the watcher waits
545 { # Describes a single variable within a RuntimeConfig resource.
546 # The name denotes the hierarchical variable name. For example,
547 # `ports/serving_port` is a valid variable name. The variable value is an
550 "text": "A String", # The string value of the variable. The length of the value must be less
553 "updateTime": "A String", # [Output Only] The time of the last variable update.
554 …"state": "A String", # [Ouput only] The current state of the variable. The variable state indicates
557 "value": "A String", # The binary value of the variable. The length of the value must be less
560 "name": "A String", # The name of the variable resource, in the format:
575 # Once you create a variable, you cannot change the variable name.