blob: a4347fe66a6823aa236c787bfb235877bb655b06 [file] [log] [blame]
Bu Sun Kim715bd7f2019-06-14 16:50:42 -07001<html><body>
2<style>
3
4body, h1, h2, h3, div, span, p, pre, a {
5 margin: 0;
6 padding: 0;
7 border: 0;
8 font-weight: inherit;
9 font-style: inherit;
10 font-size: 100%;
11 font-family: inherit;
12 vertical-align: baseline;
13}
14
15body {
16 font-size: 13px;
17 padding: 1em;
18}
19
20h1 {
21 font-size: 26px;
22 margin-bottom: 1em;
23}
24
25h2 {
26 font-size: 24px;
27 margin-bottom: 1em;
28}
29
30h3 {
31 font-size: 20px;
32 margin-bottom: 1em;
33 margin-top: 1em;
34}
35
36pre, code {
37 line-height: 1.5;
38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42 margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46 font-family: Arial, sans serif;
47}
48
49h1, h2, h3 {
50 border-bottom: solid #CCC 1px;
51}
52
53.toc_element {
54 margin-top: 0.5em;
55}
56
57.firstline {
58 margin-left: 2 em;
59}
60
61.method {
62 margin-top: 1em;
63 border: solid 1px #CCC;
64 padding: 1em;
65 background: #EEE;
66}
67
68.details {
69 font-weight: bold;
70 font-size: 14px;
71}
72
73</style>
74
75<h1><a href="remotebuildexecution_v1alpha.html">Remote Build Execution API</a> . <a href="remotebuildexecution_v1alpha.projects.html">projects</a> . <a href="remotebuildexecution_v1alpha.projects.instances.html">instances</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78 <code><a href="remotebuildexecution_v1alpha.projects.instances.workerpools.html">workerpools()</a></code>
79</p>
80<p class="firstline">Returns the workerpools Resource.</p>
81
82<p class="toc_element">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070083 <code><a href="#close">close()</a></code></p>
84<p class="firstline">Close httplib2 connections.</p>
85<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070086 <code><a href="#create">create(parent, body=None, x__xgafv=None)</a></code></p>
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070087<p class="firstline">Creates a new instance in the specified region. Returns a long running operation which contains an instance on completion. While the long running operation is in progress, any call to `GetInstance` returns an instance in state `CREATING`.</p>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070088<p class="toc_element">
89 <code><a href="#delete">delete(name, x__xgafv=None)</a></code></p>
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070090<p class="firstline">Deletes the specified instance. Returns a long running operation which contains a `google.protobuf.Empty` response on completion. Deleting an instance with worker pools in it will delete these worker pools.</p>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070091<p class="toc_element">
92 <code><a href="#get">get(name, x__xgafv=None)</a></code></p>
93<p class="firstline">Returns the specified instance.</p>
94<p class="toc_element">
95 <code><a href="#list">list(parent, x__xgafv=None)</a></code></p>
96<p class="firstline">Lists instances in a project.</p>
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070097<p class="toc_element">
Bu Sun Kim673ec5c2020-11-16 11:05:03 -070098 <code><a href="#patch">patch(name, body=None, loggingEnabled=None, updateMask=None, name1=None, x__xgafv=None)</a></code></p>
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070099<p class="firstline">Updates the specified instance. Returns a long running operation which contains the updated instance in the response on completion.</p>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700100<h3>Method Details</h3>
101<div class="method">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700102 <code class="details" id="close">close()</code>
103 <pre>Close httplib2 connections.</pre>
104</div>
105
106<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700107 <code class="details" id="create">create(parent, body=None, x__xgafv=None)</code>
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700108 <pre>Creates a new instance in the specified region. Returns a long running operation which contains an instance on completion. While the long running operation is in progress, any call to `GetInstance` returns an instance in state `CREATING`.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700109
110Args:
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700111 parent: string, Resource name of the project containing the instance. Format: `projects/[PROJECT_ID]`. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700112 body: object, The request body.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700113 The object takes the form of:
114
115{ # The request used for `CreateInstance`.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800116 &quot;parent&quot;: &quot;A String&quot;, # Resource name of the project containing the instance. Format: `projects/[PROJECT_ID]`.
117 &quot;instance&quot;: { # Instance conceptually encapsulates all Remote Build Execution resources for remote builds. An instance consists of storage and compute resources (for example, `ContentAddressableStorage`, `ActionCache`, `WorkerPools`) used for running remote builds. All Remote Build Execution API calls are scoped to an instance. # Specifies the instance to create. The name in the instance, if specified in the instance, is ignored.
118 &quot;location&quot;: &quot;A String&quot;, # The location is a GCP region. Currently only `us-central1` is supported.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800119 &quot;featurePolicy&quot;: { # FeaturePolicy defines features allowed to be used on RBE instances, as well as instance-wide behavior changes that take effect without opt-in or opt-out at usage time. # The policy to define whether or not RBE features can be used or how they can be used.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800120 &quot;dockerSiblingContainers&quot;: { # Defines whether a feature can be used or what values are accepted. # Whether dockerSiblingContainers can be used.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800121 &quot;policy&quot;: &quot;A String&quot;, # The policy of the feature.
122 &quot;allowedValues&quot;: [ # A list of acceptable values. Only effective when the policy is `RESTRICTED`.
123 &quot;A String&quot;,
124 ],
125 },
126 &quot;dockerRuntime&quot;: { # Defines whether a feature can be used or what values are accepted. # Whether dockerRuntime is allowed to be set or what runtimes are allowed. Note linux_isolation takes precedence, and if set, docker_runtime values may be rejected if they are incompatible with the selected isolation.
127 &quot;policy&quot;: &quot;A String&quot;, # The policy of the feature.
128 &quot;allowedValues&quot;: [ # A list of acceptable values. Only effective when the policy is `RESTRICTED`.
129 &quot;A String&quot;,
130 ],
131 },
132 &quot;dockerChrootPath&quot;: { # Defines whether a feature can be used or what values are accepted. # Whether dockerChrootPath can be used.
133 &quot;policy&quot;: &quot;A String&quot;, # The policy of the feature.
134 &quot;allowedValues&quot;: [ # A list of acceptable values. Only effective when the policy is `RESTRICTED`.
135 &quot;A String&quot;,
136 ],
137 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800138 &quot;dockerPrivileged&quot;: { # Defines whether a feature can be used or what values are accepted. # Whether dockerPrivileged can be used.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800139 &quot;policy&quot;: &quot;A String&quot;, # The policy of the feature.
140 &quot;allowedValues&quot;: [ # A list of acceptable values. Only effective when the policy is `RESTRICTED`.
141 &quot;A String&quot;,
142 ],
143 },
144 &quot;dockerNetwork&quot;: { # Defines whether a feature can be used or what values are accepted. # Whether dockerNetwork can be used or what network modes are allowed. E.g. one may allow `off` value only via `allowed_values`.
145 &quot;policy&quot;: &quot;A String&quot;, # The policy of the feature.
146 &quot;allowedValues&quot;: [ # A list of acceptable values. Only effective when the policy is `RESTRICTED`.
147 &quot;A String&quot;,
148 ],
149 },
150 &quot;linuxIsolation&quot;: &quot;A String&quot;, # linux_isolation allows overriding the docker runtime used for containers started on Linux.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800151 &quot;containerImageSources&quot;: { # Defines whether a feature can be used or what values are accepted. # Which container image sources are allowed. Currently only RBE-supported registry (gcr.io) is allowed. One can allow all repositories under a project or one specific repository only. E.g. container_image_sources { policy: RESTRICTED allowed_values: [ &quot;gcr.io/project-foo&quot;, &quot;gcr.io/project-bar/repo-baz&quot;, ] } will allow any repositories under &quot;gcr.io/project-foo&quot; plus the repository &quot;gcr.io/project-bar/repo-baz&quot;. Default (UNSPECIFIED) is equivalent to any source is allowed.
152 &quot;policy&quot;: &quot;A String&quot;, # The policy of the feature.
153 &quot;allowedValues&quot;: [ # A list of acceptable values. Only effective when the policy is `RESTRICTED`.
154 &quot;A String&quot;,
155 ],
156 },
157 &quot;dockerAddCapabilities&quot;: { # Defines whether a feature can be used or what values are accepted. # Whether dockerAddCapabilities can be used or what capabilities are allowed.
158 &quot;policy&quot;: &quot;A String&quot;, # The policy of the feature.
159 &quot;allowedValues&quot;: [ # A list of acceptable values. Only effective when the policy is `RESTRICTED`.
160 &quot;A String&quot;,
161 ],
162 },
163 &quot;dockerRunAsRoot&quot;: { # Defines whether a feature can be used or what values are accepted. # Whether dockerRunAsRoot can be used.
164 &quot;policy&quot;: &quot;A String&quot;, # The policy of the feature.
165 &quot;allowedValues&quot;: [ # A list of acceptable values. Only effective when the policy is `RESTRICTED`.
166 &quot;A String&quot;,
167 ],
168 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800169 },
170 &quot;state&quot;: &quot;A String&quot;, # Output only. State of the instance.
171 &quot;loggingEnabled&quot;: True or False, # Output only. Whether stack driver logging is enabled for the instance.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800172 &quot;name&quot;: &quot;A String&quot;, # Output only. Instance resource name formatted as: `projects/[PROJECT_ID]/instances/[INSTANCE_ID]`. Name should not be populated when creating an instance since it is provided in the `instance_id` field.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800173 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800174 &quot;instanceId&quot;: &quot;A String&quot;, # ID of the created instance. A valid `instance_id` must: be 6-50 characters long, contain only lowercase letters, digits, hyphens and underscores, start with a lowercase letter, and end with a lowercase letter or a digit.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700175 }
176
177 x__xgafv: string, V1 error format.
178 Allowed values
179 1 - v1 error format
180 2 - v2 error format
181
182Returns:
183 An object of the form:
184
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700185 { # This resource represents a long-running operation that is the result of a network API call.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800186 &quot;done&quot;: True or False, # If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available.
187 &quot;metadata&quot;: { # Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.
188 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
189 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700190 &quot;response&quot;: { # The normal response of the operation in case of success. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
191 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
192 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800193 &quot;name&quot;: &quot;A String&quot;, # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700194 &quot;error&quot;: { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700195 &quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700196 {
197 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
198 },
199 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800200 &quot;message&quot;: &quot;A String&quot;, # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
201 &quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800202 },
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700203 }</pre>
204</div>
205
206<div class="method">
207 <code class="details" id="delete">delete(name, x__xgafv=None)</code>
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700208 <pre>Deletes the specified instance. Returns a long running operation which contains a `google.protobuf.Empty` response on completion. Deleting an instance with worker pools in it will delete these worker pools.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700209
210Args:
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700211 name: string, Name of the instance to delete. Format: `projects/[PROJECT_ID]/instances/[INSTANCE_ID]`. (required)
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700212 x__xgafv: string, V1 error format.
213 Allowed values
214 1 - v1 error format
215 2 - v2 error format
216
217Returns:
218 An object of the form:
219
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700220 { # This resource represents a long-running operation that is the result of a network API call.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800221 &quot;done&quot;: True or False, # If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available.
222 &quot;metadata&quot;: { # Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.
223 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
224 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700225 &quot;response&quot;: { # The normal response of the operation in case of success. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
226 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
227 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800228 &quot;name&quot;: &quot;A String&quot;, # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700229 &quot;error&quot;: { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700230 &quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700231 {
232 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
233 },
234 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800235 &quot;message&quot;: &quot;A String&quot;, # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
236 &quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800237 },
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700238 }</pre>
239</div>
240
241<div class="method">
242 <code class="details" id="get">get(name, x__xgafv=None)</code>
243 <pre>Returns the specified instance.
244
245Args:
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700246 name: string, Name of the instance to retrieve. Format: `projects/[PROJECT_ID]/instances/[INSTANCE_ID]`. (required)
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700247 x__xgafv: string, V1 error format.
248 Allowed values
249 1 - v1 error format
250 2 - v2 error format
251
252Returns:
253 An object of the form:
254
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700255 { # Instance conceptually encapsulates all Remote Build Execution resources for remote builds. An instance consists of storage and compute resources (for example, `ContentAddressableStorage`, `ActionCache`, `WorkerPools`) used for running remote builds. All Remote Build Execution API calls are scoped to an instance.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800256 &quot;location&quot;: &quot;A String&quot;, # The location is a GCP region. Currently only `us-central1` is supported.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800257 &quot;featurePolicy&quot;: { # FeaturePolicy defines features allowed to be used on RBE instances, as well as instance-wide behavior changes that take effect without opt-in or opt-out at usage time. # The policy to define whether or not RBE features can be used or how they can be used.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800258 &quot;dockerSiblingContainers&quot;: { # Defines whether a feature can be used or what values are accepted. # Whether dockerSiblingContainers can be used.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800259 &quot;policy&quot;: &quot;A String&quot;, # The policy of the feature.
260 &quot;allowedValues&quot;: [ # A list of acceptable values. Only effective when the policy is `RESTRICTED`.
261 &quot;A String&quot;,
262 ],
263 },
264 &quot;dockerRuntime&quot;: { # Defines whether a feature can be used or what values are accepted. # Whether dockerRuntime is allowed to be set or what runtimes are allowed. Note linux_isolation takes precedence, and if set, docker_runtime values may be rejected if they are incompatible with the selected isolation.
265 &quot;policy&quot;: &quot;A String&quot;, # The policy of the feature.
266 &quot;allowedValues&quot;: [ # A list of acceptable values. Only effective when the policy is `RESTRICTED`.
267 &quot;A String&quot;,
268 ],
269 },
270 &quot;dockerChrootPath&quot;: { # Defines whether a feature can be used or what values are accepted. # Whether dockerChrootPath can be used.
271 &quot;policy&quot;: &quot;A String&quot;, # The policy of the feature.
272 &quot;allowedValues&quot;: [ # A list of acceptable values. Only effective when the policy is `RESTRICTED`.
273 &quot;A String&quot;,
274 ],
275 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800276 &quot;dockerPrivileged&quot;: { # Defines whether a feature can be used or what values are accepted. # Whether dockerPrivileged can be used.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800277 &quot;policy&quot;: &quot;A String&quot;, # The policy of the feature.
278 &quot;allowedValues&quot;: [ # A list of acceptable values. Only effective when the policy is `RESTRICTED`.
279 &quot;A String&quot;,
280 ],
281 },
282 &quot;dockerNetwork&quot;: { # Defines whether a feature can be used or what values are accepted. # Whether dockerNetwork can be used or what network modes are allowed. E.g. one may allow `off` value only via `allowed_values`.
283 &quot;policy&quot;: &quot;A String&quot;, # The policy of the feature.
284 &quot;allowedValues&quot;: [ # A list of acceptable values. Only effective when the policy is `RESTRICTED`.
285 &quot;A String&quot;,
286 ],
287 },
288 &quot;linuxIsolation&quot;: &quot;A String&quot;, # linux_isolation allows overriding the docker runtime used for containers started on Linux.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800289 &quot;containerImageSources&quot;: { # Defines whether a feature can be used or what values are accepted. # Which container image sources are allowed. Currently only RBE-supported registry (gcr.io) is allowed. One can allow all repositories under a project or one specific repository only. E.g. container_image_sources { policy: RESTRICTED allowed_values: [ &quot;gcr.io/project-foo&quot;, &quot;gcr.io/project-bar/repo-baz&quot;, ] } will allow any repositories under &quot;gcr.io/project-foo&quot; plus the repository &quot;gcr.io/project-bar/repo-baz&quot;. Default (UNSPECIFIED) is equivalent to any source is allowed.
290 &quot;policy&quot;: &quot;A String&quot;, # The policy of the feature.
291 &quot;allowedValues&quot;: [ # A list of acceptable values. Only effective when the policy is `RESTRICTED`.
292 &quot;A String&quot;,
293 ],
294 },
295 &quot;dockerAddCapabilities&quot;: { # Defines whether a feature can be used or what values are accepted. # Whether dockerAddCapabilities can be used or what capabilities are allowed.
296 &quot;policy&quot;: &quot;A String&quot;, # The policy of the feature.
297 &quot;allowedValues&quot;: [ # A list of acceptable values. Only effective when the policy is `RESTRICTED`.
298 &quot;A String&quot;,
299 ],
300 },
301 &quot;dockerRunAsRoot&quot;: { # Defines whether a feature can be used or what values are accepted. # Whether dockerRunAsRoot can be used.
302 &quot;policy&quot;: &quot;A String&quot;, # The policy of the feature.
303 &quot;allowedValues&quot;: [ # A list of acceptable values. Only effective when the policy is `RESTRICTED`.
304 &quot;A String&quot;,
305 ],
306 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800307 },
308 &quot;state&quot;: &quot;A String&quot;, # Output only. State of the instance.
309 &quot;loggingEnabled&quot;: True or False, # Output only. Whether stack driver logging is enabled for the instance.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800310 &quot;name&quot;: &quot;A String&quot;, # Output only. Instance resource name formatted as: `projects/[PROJECT_ID]/instances/[INSTANCE_ID]`. Name should not be populated when creating an instance since it is provided in the `instance_id` field.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800311 }</pre>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700312</div>
313
314<div class="method">
315 <code class="details" id="list">list(parent, x__xgafv=None)</code>
316 <pre>Lists instances in a project.
317
318Args:
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700319 parent: string, Resource name of the project. Format: `projects/[PROJECT_ID]`. (required)
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700320 x__xgafv: string, V1 error format.
321 Allowed values
322 1 - v1 error format
323 2 - v2 error format
324
325Returns:
326 An object of the form:
327
328 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700329 &quot;instances&quot;: [ # The list of instances in a given project.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700330 { # Instance conceptually encapsulates all Remote Build Execution resources for remote builds. An instance consists of storage and compute resources (for example, `ContentAddressableStorage`, `ActionCache`, `WorkerPools`) used for running remote builds. All Remote Build Execution API calls are scoped to an instance.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800331 &quot;location&quot;: &quot;A String&quot;, # The location is a GCP region. Currently only `us-central1` is supported.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800332 &quot;featurePolicy&quot;: { # FeaturePolicy defines features allowed to be used on RBE instances, as well as instance-wide behavior changes that take effect without opt-in or opt-out at usage time. # The policy to define whether or not RBE features can be used or how they can be used.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800333 &quot;dockerSiblingContainers&quot;: { # Defines whether a feature can be used or what values are accepted. # Whether dockerSiblingContainers can be used.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800334 &quot;policy&quot;: &quot;A String&quot;, # The policy of the feature.
335 &quot;allowedValues&quot;: [ # A list of acceptable values. Only effective when the policy is `RESTRICTED`.
336 &quot;A String&quot;,
337 ],
338 },
339 &quot;dockerRuntime&quot;: { # Defines whether a feature can be used or what values are accepted. # Whether dockerRuntime is allowed to be set or what runtimes are allowed. Note linux_isolation takes precedence, and if set, docker_runtime values may be rejected if they are incompatible with the selected isolation.
340 &quot;policy&quot;: &quot;A String&quot;, # The policy of the feature.
341 &quot;allowedValues&quot;: [ # A list of acceptable values. Only effective when the policy is `RESTRICTED`.
342 &quot;A String&quot;,
343 ],
344 },
345 &quot;dockerChrootPath&quot;: { # Defines whether a feature can be used or what values are accepted. # Whether dockerChrootPath can be used.
346 &quot;policy&quot;: &quot;A String&quot;, # The policy of the feature.
347 &quot;allowedValues&quot;: [ # A list of acceptable values. Only effective when the policy is `RESTRICTED`.
348 &quot;A String&quot;,
349 ],
350 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800351 &quot;dockerPrivileged&quot;: { # Defines whether a feature can be used or what values are accepted. # Whether dockerPrivileged can be used.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800352 &quot;policy&quot;: &quot;A String&quot;, # The policy of the feature.
353 &quot;allowedValues&quot;: [ # A list of acceptable values. Only effective when the policy is `RESTRICTED`.
354 &quot;A String&quot;,
355 ],
356 },
357 &quot;dockerNetwork&quot;: { # Defines whether a feature can be used or what values are accepted. # Whether dockerNetwork can be used or what network modes are allowed. E.g. one may allow `off` value only via `allowed_values`.
358 &quot;policy&quot;: &quot;A String&quot;, # The policy of the feature.
359 &quot;allowedValues&quot;: [ # A list of acceptable values. Only effective when the policy is `RESTRICTED`.
360 &quot;A String&quot;,
361 ],
362 },
363 &quot;linuxIsolation&quot;: &quot;A String&quot;, # linux_isolation allows overriding the docker runtime used for containers started on Linux.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800364 &quot;containerImageSources&quot;: { # Defines whether a feature can be used or what values are accepted. # Which container image sources are allowed. Currently only RBE-supported registry (gcr.io) is allowed. One can allow all repositories under a project or one specific repository only. E.g. container_image_sources { policy: RESTRICTED allowed_values: [ &quot;gcr.io/project-foo&quot;, &quot;gcr.io/project-bar/repo-baz&quot;, ] } will allow any repositories under &quot;gcr.io/project-foo&quot; plus the repository &quot;gcr.io/project-bar/repo-baz&quot;. Default (UNSPECIFIED) is equivalent to any source is allowed.
365 &quot;policy&quot;: &quot;A String&quot;, # The policy of the feature.
366 &quot;allowedValues&quot;: [ # A list of acceptable values. Only effective when the policy is `RESTRICTED`.
367 &quot;A String&quot;,
368 ],
369 },
370 &quot;dockerAddCapabilities&quot;: { # Defines whether a feature can be used or what values are accepted. # Whether dockerAddCapabilities can be used or what capabilities are allowed.
371 &quot;policy&quot;: &quot;A String&quot;, # The policy of the feature.
372 &quot;allowedValues&quot;: [ # A list of acceptable values. Only effective when the policy is `RESTRICTED`.
373 &quot;A String&quot;,
374 ],
375 },
376 &quot;dockerRunAsRoot&quot;: { # Defines whether a feature can be used or what values are accepted. # Whether dockerRunAsRoot can be used.
377 &quot;policy&quot;: &quot;A String&quot;, # The policy of the feature.
378 &quot;allowedValues&quot;: [ # A list of acceptable values. Only effective when the policy is `RESTRICTED`.
379 &quot;A String&quot;,
380 ],
381 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700382 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800383 &quot;state&quot;: &quot;A String&quot;, # Output only. State of the instance.
384 &quot;loggingEnabled&quot;: True or False, # Output only. Whether stack driver logging is enabled for the instance.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800385 &quot;name&quot;: &quot;A String&quot;, # Output only. Instance resource name formatted as: `projects/[PROJECT_ID]/instances/[INSTANCE_ID]`. Name should not be populated when creating an instance since it is provided in the `instance_id` field.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800386 },
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700387 ],
388 }</pre>
389</div>
390
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700391<div class="method">
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700392 <code class="details" id="patch">patch(name, body=None, loggingEnabled=None, updateMask=None, name1=None, x__xgafv=None)</code>
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700393 <pre>Updates the specified instance. Returns a long running operation which contains the updated instance in the response on completion.
394
395Args:
396 name: string, Output only. Instance resource name formatted as: `projects/[PROJECT_ID]/instances/[INSTANCE_ID]`. Name should not be populated when creating an instance since it is provided in the `instance_id` field. (required)
397 body: object, The request body.
398 The object takes the form of:
399
400{ # Instance conceptually encapsulates all Remote Build Execution resources for remote builds. An instance consists of storage and compute resources (for example, `ContentAddressableStorage`, `ActionCache`, `WorkerPools`) used for running remote builds. All Remote Build Execution API calls are scoped to an instance.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800401 &quot;location&quot;: &quot;A String&quot;, # The location is a GCP region. Currently only `us-central1` is supported.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800402 &quot;featurePolicy&quot;: { # FeaturePolicy defines features allowed to be used on RBE instances, as well as instance-wide behavior changes that take effect without opt-in or opt-out at usage time. # The policy to define whether or not RBE features can be used or how they can be used.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800403 &quot;dockerSiblingContainers&quot;: { # Defines whether a feature can be used or what values are accepted. # Whether dockerSiblingContainers can be used.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800404 &quot;policy&quot;: &quot;A String&quot;, # The policy of the feature.
405 &quot;allowedValues&quot;: [ # A list of acceptable values. Only effective when the policy is `RESTRICTED`.
406 &quot;A String&quot;,
407 ],
408 },
409 &quot;dockerRuntime&quot;: { # Defines whether a feature can be used or what values are accepted. # Whether dockerRuntime is allowed to be set or what runtimes are allowed. Note linux_isolation takes precedence, and if set, docker_runtime values may be rejected if they are incompatible with the selected isolation.
410 &quot;policy&quot;: &quot;A String&quot;, # The policy of the feature.
411 &quot;allowedValues&quot;: [ # A list of acceptable values. Only effective when the policy is `RESTRICTED`.
412 &quot;A String&quot;,
413 ],
414 },
415 &quot;dockerChrootPath&quot;: { # Defines whether a feature can be used or what values are accepted. # Whether dockerChrootPath can be used.
416 &quot;policy&quot;: &quot;A String&quot;, # The policy of the feature.
417 &quot;allowedValues&quot;: [ # A list of acceptable values. Only effective when the policy is `RESTRICTED`.
418 &quot;A String&quot;,
419 ],
420 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800421 &quot;dockerPrivileged&quot;: { # Defines whether a feature can be used or what values are accepted. # Whether dockerPrivileged can be used.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800422 &quot;policy&quot;: &quot;A String&quot;, # The policy of the feature.
423 &quot;allowedValues&quot;: [ # A list of acceptable values. Only effective when the policy is `RESTRICTED`.
424 &quot;A String&quot;,
425 ],
426 },
427 &quot;dockerNetwork&quot;: { # Defines whether a feature can be used or what values are accepted. # Whether dockerNetwork can be used or what network modes are allowed. E.g. one may allow `off` value only via `allowed_values`.
428 &quot;policy&quot;: &quot;A String&quot;, # The policy of the feature.
429 &quot;allowedValues&quot;: [ # A list of acceptable values. Only effective when the policy is `RESTRICTED`.
430 &quot;A String&quot;,
431 ],
432 },
433 &quot;linuxIsolation&quot;: &quot;A String&quot;, # linux_isolation allows overriding the docker runtime used for containers started on Linux.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800434 &quot;containerImageSources&quot;: { # Defines whether a feature can be used or what values are accepted. # Which container image sources are allowed. Currently only RBE-supported registry (gcr.io) is allowed. One can allow all repositories under a project or one specific repository only. E.g. container_image_sources { policy: RESTRICTED allowed_values: [ &quot;gcr.io/project-foo&quot;, &quot;gcr.io/project-bar/repo-baz&quot;, ] } will allow any repositories under &quot;gcr.io/project-foo&quot; plus the repository &quot;gcr.io/project-bar/repo-baz&quot;. Default (UNSPECIFIED) is equivalent to any source is allowed.
435 &quot;policy&quot;: &quot;A String&quot;, # The policy of the feature.
436 &quot;allowedValues&quot;: [ # A list of acceptable values. Only effective when the policy is `RESTRICTED`.
437 &quot;A String&quot;,
438 ],
439 },
440 &quot;dockerAddCapabilities&quot;: { # Defines whether a feature can be used or what values are accepted. # Whether dockerAddCapabilities can be used or what capabilities are allowed.
441 &quot;policy&quot;: &quot;A String&quot;, # The policy of the feature.
442 &quot;allowedValues&quot;: [ # A list of acceptable values. Only effective when the policy is `RESTRICTED`.
443 &quot;A String&quot;,
444 ],
445 },
446 &quot;dockerRunAsRoot&quot;: { # Defines whether a feature can be used or what values are accepted. # Whether dockerRunAsRoot can be used.
447 &quot;policy&quot;: &quot;A String&quot;, # The policy of the feature.
448 &quot;allowedValues&quot;: [ # A list of acceptable values. Only effective when the policy is `RESTRICTED`.
449 &quot;A String&quot;,
450 ],
451 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800452 },
453 &quot;state&quot;: &quot;A String&quot;, # Output only. State of the instance.
454 &quot;loggingEnabled&quot;: True or False, # Output only. Whether stack driver logging is enabled for the instance.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800455 &quot;name&quot;: &quot;A String&quot;, # Output only. Instance resource name formatted as: `projects/[PROJECT_ID]/instances/[INSTANCE_ID]`. Name should not be populated when creating an instance since it is provided in the `instance_id` field.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800456}
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700457
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700458 loggingEnabled: boolean, Deprecated, use instance.logging_enabled instead. Whether to enable Stackdriver logging for this instance.
459 updateMask: string, The update mask applies to instance. For the `FieldMask` definition, see https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask If an empty update_mask is provided, only the non-default valued field in the worker pool field will be updated. Note that in order to update a field to the default value (zero, false, empty string) an explicit update_mask must be provided.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700460 name1: string, Deprecated, use instance.Name instead. Name of the instance to update. Format: `projects/[PROJECT_ID]/instances/[INSTANCE_ID]`.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700461 x__xgafv: string, V1 error format.
462 Allowed values
463 1 - v1 error format
464 2 - v2 error format
465
466Returns:
467 An object of the form:
468
469 { # This resource represents a long-running operation that is the result of a network API call.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800470 &quot;done&quot;: True or False, # If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available.
471 &quot;metadata&quot;: { # Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.
472 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
473 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700474 &quot;response&quot;: { # The normal response of the operation in case of success. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
475 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
476 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800477 &quot;name&quot;: &quot;A String&quot;, # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700478 &quot;error&quot;: { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700479 &quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
480 {
481 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
482 },
483 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800484 &quot;message&quot;: &quot;A String&quot;, # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
485 &quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800486 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700487 }</pre>
488</div>
489
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700490</body></html>