Skip to content

Commit 7a795e4

Browse files
Vision semi-GAPIC (#3373)
1 parent c2af505 commit 7a795e4

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

packages/google-cloud-runtimeconfig/google/cloud/runtimeconfig/_helpers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def config_name_from_full_name(full_name):
2525
:param full_name:
2626
The full resource name of a config. The full resource name looks like
2727
``projects/project-name/configs/config-name`` and is returned as the
28-
``name`` field of a config resource. See:
28+
``name`` field of a config resource. See
2929
https://cloud.google.com/deployment-manager/runtime-configurator/reference/rest/v1beta1/projects.configs
3030
3131
:rtype: str
@@ -54,7 +54,7 @@ def variable_name_from_full_name(full_name):
5454
:param full_name:
5555
The full resource name of a variable. The full resource name looks like
5656
``projects/prj-name/configs/cfg-name/variables/var-name`` and is
57-
returned as the ``name`` field of a variable resource. See:
57+
returned as the ``name`` field of a variable resource. See
5858
https://cloud.google.com/deployment-manager/runtime-configurator/reference/rest/v1beta1/projects.configs.variables
5959
6060
:rtype: str

packages/google-cloud-runtimeconfig/google/cloud/runtimeconfig/config.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class Config(object):
2525
2626
This consists of metadata and a hierarchy of variables.
2727
28-
See:
28+
See
2929
https://cloud.google.com/deployment-manager/runtime-configurator/reference/rest/v1beta1/projects.configs
3030
3131
:type client: :class:`google.cloud.runtimeconfig.client.Client`
@@ -53,7 +53,7 @@ def client(self):
5353
def description(self):
5454
"""Description of the config object.
5555
56-
See:
56+
See
5757
https://cloud.google.com/deployment-manager/runtime-configurator/reference/rest/v1beta1/projects.configs#resource-runtimeconfig
5858
5959
:rtype: str, or ``NoneType``
@@ -164,7 +164,7 @@ def reload(self, client=None):
164164
165165
This method will reload the newest data for the config.
166166
167-
See:
167+
See
168168
https://cloud.google.com/deployment-manager/runtime-configurator/reference/rest/v1beta1/projects.configs/get
169169
170170
:type client: :class:`google.cloud.runtimeconfig.client.Client`
@@ -216,7 +216,7 @@ def list_variables(self, page_size=None, page_token=None, client=None):
216216
217217
This only lists variable names, not the values.
218218
219-
See:
219+
See
220220
https://cloud.google.com/deployment-manager/runtime-configurator/reference/rest/v1beta1/projects.configs.variables/list
221221
222222
:type page_size: int

packages/google-cloud-runtimeconfig/google/cloud/runtimeconfig/variable.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,19 @@
1616
1717
.. data:: STATE_UNSPECIFIED
1818
19-
The default variable state. See:
19+
The default variable state. See
2020
https://cloud.google.com/deployment-manager/runtime-configurator/reference/rest/v1beta1/projects.configs.variables#VariableState
2121
2222
.. data:: STATE_UPDATED
2323
2424
Indicates the variable was updated, while `variables.watch` was executing.
25-
See:
25+
See
2626
https://cloud.google.com/deployment-manager/runtime-configurator/reference/rest/v1beta1/projects.configs.variables#VariableState
2727
2828
.. data:: STATE_DELETED
2929
3030
Indicates the variable was deleted, while `variables.watch`_ was executing.
31-
See:
31+
See
3232
https://cloud.google.com/deployment-manager/runtime-configurator/reference/rest/v1beta1/projects.configs.variables#VariableState
3333
3434
.. _variables.watch:
@@ -50,7 +50,7 @@
5050
class Variable(object):
5151
"""A variable in the Cloud RuntimeConfig service.
5252
53-
See:
53+
See
5454
https://cloud.google.com/deployment-manager/runtime-configurator/reference/rest/v1beta1/projects.configs.variables
5555
5656
:type name: str
@@ -118,7 +118,7 @@ def client(self):
118118
def value(self):
119119
"""Value of the variable, as bytes.
120120
121-
See:
121+
See
122122
https://cloud.google.com/deployment-manager/runtime-configurator/reference/rest/v1beta1/projects.configs.variables
123123
124124
:rtype: bytes or ``NoneType``
@@ -134,7 +134,7 @@ def value(self):
134134
def state(self):
135135
"""Retrieve the state of the variable.
136136
137-
See:
137+
See
138138
https://cloud.google.com/deployment-manager/runtime-configurator/reference/rest/v1beta1/projects.configs.variables#VariableState
139139
140140
:rtype: str
@@ -148,7 +148,7 @@ def state(self):
148148
def update_time(self):
149149
"""Retrieve the timestamp at which the variable was updated.
150150
151-
See:
151+
See
152152
https://cloud.google.com/deployment-manager/runtime-configurator/reference/rest/v1beta1/projects.configs.variables
153153
154154
:rtype: :class:`datetime.datetime` or ``NoneType``
@@ -190,7 +190,7 @@ def _set_properties(self, resource):
190190
def exists(self, client=None):
191191
"""API call: test for the existence of the variable via a GET request
192192
193-
See:
193+
See
194194
https://cloud.google.com/deployment-manager/runtime-configurator/reference/rest/v1beta1/projects.configs.variables/get
195195
196196
:type client: :class:`~google.cloud.runtimeconfig.client.Client`
@@ -217,7 +217,7 @@ def reload(self, client=None):
217217
218218
This method will reload the newest data for the variable.
219219
220-
See:
220+
See
221221
https://cloud.google.com/deployment-manager/runtime-configurator/reference/rest/v1beta1/projects.configs/get
222222
223223
:type client: :class:`google.cloud.runtimeconfig.client.Client`

0 commit comments

Comments
 (0)