blob: 669f8f5d15b3af22e1e36fb1b4e6c5c2e07496e0 [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="cloudshell_v1alpha1.html">Cloud Shell API</a> . <a href="cloudshell_v1alpha1.users.html">users</a> . <a href="cloudshell_v1alpha1.users.environments.html">environments</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78 <code><a href="cloudshell_v1alpha1.users.environments.publicKeys.html">publicKeys()</a></code>
79</p>
80<p class="firstline">Returns the publicKeys Resource.</p>
81
82<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070083 <code><a href="#authorize">authorize(name, body=None, x__xgafv=None)</a></code></p>
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070084<p class="firstline">Sends OAuth credentials to a running environment on behalf of a user. When this completes, the environment will be authorized to run various Google Cloud command line tools without requiring the user to manually authenticate.</p>
85<p class="toc_element">
86 <code><a href="#close">close()</a></code></p>
87<p class="firstline">Close httplib2 connections.</p>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070088<p class="toc_element">
89 <code><a href="#get">get(name, x__xgafv=None)</a></code></p>
90<p class="firstline">Gets an environment. Returns NOT_FOUND if the environment does not exist.</p>
91<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070092 <code><a href="#patch">patch(name, body=None, updateMask=None, x__xgafv=None)</a></code></p>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070093<p class="firstline">Updates an existing environment.</p>
94<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070095 <code><a href="#start">start(name, body=None, x__xgafv=None)</a></code></p>
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070096<p class="firstline">Starts an existing environment, allowing clients to connect to it. The returned operation will contain an instance of StartEnvironmentMetadata in its metadata field. Users can wait for the environment to start by polling this operation via GetOperation. Once the environment has finished starting and is ready to accept connections, the operation will contain a StartEnvironmentResponse in its response field.</p>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070097<h3>Method Details</h3>
98<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -070099 <code class="details" id="authorize">authorize(name, body=None, x__xgafv=None)</code>
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700100 <pre>Sends OAuth credentials to a running environment on behalf of a user. When this completes, the environment will be authorized to run various Google Cloud command line tools without requiring the user to manually authenticate.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700101
102Args:
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700103 name: string, Name of the resource that should receive the credentials, for example `users/me/environments/default` or `users/someone@example.com/environments/default`. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700104 body: object, The request body.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700105 The object takes the form of:
106
107{ # Request message for AuthorizeEnvironment.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800108 &quot;accessToken&quot;: &quot;A String&quot;, # The OAuth access token that should be sent to the environment.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800109 &quot;expireTime&quot;: &quot;A String&quot;, # The time when the credentials expire. If not set, defaults to one hour from when the server received the request.
110 &quot;idToken&quot;: &quot;A String&quot;, # The OAuth ID token that should be sent to the environment.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700111 }
112
113 x__xgafv: string, V1 error format.
114 Allowed values
115 1 - v1 error format
116 2 - v2 error format
117
118Returns:
119 An object of the form:
120
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700121 { # A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); } The JSON representation for `Empty` is empty JSON object `{}`.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700122 }</pre>
123</div>
124
125<div class="method">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700126 <code class="details" id="close">close()</code>
127 <pre>Close httplib2 connections.</pre>
128</div>
129
130<div class="method">
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700131 <code class="details" id="get">get(name, x__xgafv=None)</code>
132 <pre>Gets an environment. Returns NOT_FOUND if the environment does not exist.
133
134Args:
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700135 name: string, Name of the requested resource, for example `users/me/environments/default` or `users/someone@example.com/environments/default`. (required)
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700136 x__xgafv: string, V1 error format.
137 Allowed values
138 1 - v1 error format
139 2 - v2 error format
140
141Returns:
142 An object of the form:
143
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700144 { # A Cloud Shell environment, which is defined as the combination of a Docker image specifying what is installed on the environment and a home directory containing the user&#x27;s data that will remain across sessions. Each user has a single environment with the ID &quot;default&quot;.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800145 &quot;vmSizeExpireTime&quot;: &quot;A String&quot;, # Output only. The time when the Environment will expire back to the default VM size.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800146 &quot;sshPort&quot;: 42, # Output only. Port to which clients can connect to initiate SSH sessions with the environment.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800147 &quot;publicKeys&quot;: [ # Output only. Public keys associated with the environment. Clients can connect to this environment via SSH only if they possess a private key corresponding to at least one of these public keys. Keys can be added to or removed from the environment using the CreatePublicKey and DeletePublicKey methods.
148 { # A public SSH key, corresponding to a private SSH key held by the client.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800149 &quot;key&quot;: &quot;A String&quot;, # Required. Content of this key.
150 &quot;name&quot;: &quot;A String&quot;, # Output only. Full name of this resource, in the format `users/{owner_email}/environments/{environment_id}/publicKeys/{key_id}`. `{owner_email}` is the email address of the user to whom the key belongs. `{environment_id}` is the identifier of the environment to which the key grants access. `{key_id}` is the unique identifier of the key. For example, `users/someone@example.com/environments/default/publicKeys/myKey`.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800151 &quot;format&quot;: &quot;A String&quot;, # Required. Format of this key&#x27;s content.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800152 },
153 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800154 &quot;sshUsername&quot;: &quot;A String&quot;, # Output only. Username that clients should use when initiating SSH sessions with the environment.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800155 &quot;id&quot;: &quot;A String&quot;, # Output only. The environment&#x27;s identifier, unique among the user&#x27;s environments.
156 &quot;size&quot;: &quot;A String&quot;, # Indicates the size of the backing VM running the environment. If set to something other than DEFAULT, it will be reverted to the default VM size after vm_size_expire_time.
157 &quot;sshHost&quot;: &quot;A String&quot;, # Output only. Host to which clients can connect to initiate SSH sessions with the environment.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700158 &quot;webPorts&quot;: [ # Output only. Ports to which clients can connect to initiate HTTPS or WSS connections with the environment.
159 42,
160 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800161 &quot;dockerImage&quot;: &quot;A String&quot;, # Required. Full path to the Docker image used to run this environment, e.g. &quot;gcr.io/dev-con/cloud-devshell:latest&quot;.
162 &quot;state&quot;: &quot;A String&quot;, # Output only. Current execution state of this environment.
163 &quot;name&quot;: &quot;A String&quot;, # Output only. Full name of this resource, in the format `users/{owner_email}/environments/{environment_id}`. `{owner_email}` is the email address of the user to whom this environment belongs, and `{environment_id}` is the identifier of this environment. For example, `users/someone@example.com/environments/default`.
164 &quot;webHost&quot;: &quot;A String&quot;, # Output only. Host to which clients can connect to initiate HTTPS or WSS connections with the environment.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700165 }</pre>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700166</div>
167
168<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700169 <code class="details" id="patch">patch(name, body=None, updateMask=None, x__xgafv=None)</code>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700170 <pre>Updates an existing environment.
171
172Args:
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700173 name: string, Name of the resource to be updated, for example `users/me/environments/default` or `users/someone@example.com/environments/default`. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700174 body: object, The request body.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700175 The object takes the form of:
176
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700177{ # A Cloud Shell environment, which is defined as the combination of a Docker image specifying what is installed on the environment and a home directory containing the user&#x27;s data that will remain across sessions. Each user has a single environment with the ID &quot;default&quot;.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800178 &quot;vmSizeExpireTime&quot;: &quot;A String&quot;, # Output only. The time when the Environment will expire back to the default VM size.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800179 &quot;sshPort&quot;: 42, # Output only. Port to which clients can connect to initiate SSH sessions with the environment.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800180 &quot;publicKeys&quot;: [ # Output only. Public keys associated with the environment. Clients can connect to this environment via SSH only if they possess a private key corresponding to at least one of these public keys. Keys can be added to or removed from the environment using the CreatePublicKey and DeletePublicKey methods.
181 { # A public SSH key, corresponding to a private SSH key held by the client.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800182 &quot;key&quot;: &quot;A String&quot;, # Required. Content of this key.
183 &quot;name&quot;: &quot;A String&quot;, # Output only. Full name of this resource, in the format `users/{owner_email}/environments/{environment_id}/publicKeys/{key_id}`. `{owner_email}` is the email address of the user to whom the key belongs. `{environment_id}` is the identifier of the environment to which the key grants access. `{key_id}` is the unique identifier of the key. For example, `users/someone@example.com/environments/default/publicKeys/myKey`.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800184 &quot;format&quot;: &quot;A String&quot;, # Required. Format of this key&#x27;s content.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800185 },
186 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800187 &quot;sshUsername&quot;: &quot;A String&quot;, # Output only. Username that clients should use when initiating SSH sessions with the environment.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800188 &quot;id&quot;: &quot;A String&quot;, # Output only. The environment&#x27;s identifier, unique among the user&#x27;s environments.
189 &quot;size&quot;: &quot;A String&quot;, # Indicates the size of the backing VM running the environment. If set to something other than DEFAULT, it will be reverted to the default VM size after vm_size_expire_time.
190 &quot;sshHost&quot;: &quot;A String&quot;, # Output only. Host to which clients can connect to initiate SSH sessions with the environment.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700191 &quot;webPorts&quot;: [ # Output only. Ports to which clients can connect to initiate HTTPS or WSS connections with the environment.
192 42,
193 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800194 &quot;dockerImage&quot;: &quot;A String&quot;, # Required. Full path to the Docker image used to run this environment, e.g. &quot;gcr.io/dev-con/cloud-devshell:latest&quot;.
195 &quot;state&quot;: &quot;A String&quot;, # Output only. Current execution state of this environment.
196 &quot;name&quot;: &quot;A String&quot;, # Output only. Full name of this resource, in the format `users/{owner_email}/environments/{environment_id}`. `{owner_email}` is the email address of the user to whom this environment belongs, and `{environment_id}` is the identifier of this environment. For example, `users/someone@example.com/environments/default`.
197 &quot;webHost&quot;: &quot;A String&quot;, # Output only. Host to which clients can connect to initiate HTTPS or WSS connections with the environment.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700198}
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700199
200 updateMask: string, Mask specifying which fields in the environment should be updated.
201 x__xgafv: string, V1 error format.
202 Allowed values
203 1 - v1 error format
204 2 - v2 error format
205
206Returns:
207 An object of the form:
208
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700209 { # A Cloud Shell environment, which is defined as the combination of a Docker image specifying what is installed on the environment and a home directory containing the user&#x27;s data that will remain across sessions. Each user has a single environment with the ID &quot;default&quot;.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800210 &quot;vmSizeExpireTime&quot;: &quot;A String&quot;, # Output only. The time when the Environment will expire back to the default VM size.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800211 &quot;sshPort&quot;: 42, # Output only. Port to which clients can connect to initiate SSH sessions with the environment.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800212 &quot;publicKeys&quot;: [ # Output only. Public keys associated with the environment. Clients can connect to this environment via SSH only if they possess a private key corresponding to at least one of these public keys. Keys can be added to or removed from the environment using the CreatePublicKey and DeletePublicKey methods.
213 { # A public SSH key, corresponding to a private SSH key held by the client.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800214 &quot;key&quot;: &quot;A String&quot;, # Required. Content of this key.
215 &quot;name&quot;: &quot;A String&quot;, # Output only. Full name of this resource, in the format `users/{owner_email}/environments/{environment_id}/publicKeys/{key_id}`. `{owner_email}` is the email address of the user to whom the key belongs. `{environment_id}` is the identifier of the environment to which the key grants access. `{key_id}` is the unique identifier of the key. For example, `users/someone@example.com/environments/default/publicKeys/myKey`.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800216 &quot;format&quot;: &quot;A String&quot;, # Required. Format of this key&#x27;s content.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800217 },
218 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800219 &quot;sshUsername&quot;: &quot;A String&quot;, # Output only. Username that clients should use when initiating SSH sessions with the environment.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800220 &quot;id&quot;: &quot;A String&quot;, # Output only. The environment&#x27;s identifier, unique among the user&#x27;s environments.
221 &quot;size&quot;: &quot;A String&quot;, # Indicates the size of the backing VM running the environment. If set to something other than DEFAULT, it will be reverted to the default VM size after vm_size_expire_time.
222 &quot;sshHost&quot;: &quot;A String&quot;, # Output only. Host to which clients can connect to initiate SSH sessions with the environment.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700223 &quot;webPorts&quot;: [ # Output only. Ports to which clients can connect to initiate HTTPS or WSS connections with the environment.
224 42,
225 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800226 &quot;dockerImage&quot;: &quot;A String&quot;, # Required. Full path to the Docker image used to run this environment, e.g. &quot;gcr.io/dev-con/cloud-devshell:latest&quot;.
227 &quot;state&quot;: &quot;A String&quot;, # Output only. Current execution state of this environment.
228 &quot;name&quot;: &quot;A String&quot;, # Output only. Full name of this resource, in the format `users/{owner_email}/environments/{environment_id}`. `{owner_email}` is the email address of the user to whom this environment belongs, and `{environment_id}` is the identifier of this environment. For example, `users/someone@example.com/environments/default`.
229 &quot;webHost&quot;: &quot;A String&quot;, # Output only. Host to which clients can connect to initiate HTTPS or WSS connections with the environment.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700230 }</pre>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700231</div>
232
233<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700234 <code class="details" id="start">start(name, body=None, x__xgafv=None)</code>
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700235 <pre>Starts an existing environment, allowing clients to connect to it. The returned operation will contain an instance of StartEnvironmentMetadata in its metadata field. Users can wait for the environment to start by polling this operation via GetOperation. Once the environment has finished starting and is ready to accept connections, the operation will contain a StartEnvironmentResponse in its response field.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700236
237Args:
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700238 name: string, Name of the resource that should be started, for example `users/me/environments/default` or `users/someone@example.com/environments/default`. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700239 body: object, The request body.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700240 The object takes the form of:
241
242{ # Request message for StartEnvironment.
Bu Sun Kim65020912020-05-20 12:08:20 -0700243 &quot;publicKeys&quot;: [ # Public keys that should be added to the environment before it is started.
244 { # A public SSH key, corresponding to a private SSH key held by the client.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800245 &quot;key&quot;: &quot;A String&quot;, # Required. Content of this key.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800246 &quot;name&quot;: &quot;A String&quot;, # Output only. Full name of this resource, in the format `users/{owner_email}/environments/{environment_id}/publicKeys/{key_id}`. `{owner_email}` is the email address of the user to whom the key belongs. `{environment_id}` is the identifier of the environment to which the key grants access. `{key_id}` is the unique identifier of the key. For example, `users/someone@example.com/environments/default/publicKeys/myKey`.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800247 &quot;format&quot;: &quot;A String&quot;, # Required. Format of this key&#x27;s content.
Bu Sun Kim65020912020-05-20 12:08:20 -0700248 },
249 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800250 &quot;accessToken&quot;: &quot;A String&quot;, # The initial access token passed to the environment. If this is present and valid, the environment will be pre-authenticated with gcloud so that the user can run gcloud commands in Cloud Shell without having to log in. This code can be updated later by calling AuthorizeEnvironment.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700251 }
252
253 x__xgafv: string, V1 error format.
254 Allowed values
255 1 - v1 error format
256 2 - v2 error format
257
258Returns:
259 An object of the form:
260
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700261 { # This resource represents a long-running operation that is the result of a network API call.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800262 &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`.
263 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
264 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800265 &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 -0700266 &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.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800267 &quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700268 &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 -0700269 {
270 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
271 },
272 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800273 &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.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700274 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800275 &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.
276 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
277 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800278 &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.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700279 }</pre>
280</div>
281
282</body></html>