blob: aebefce81d333da011b113fb04c7f31f920d8890 [file] [log] [blame]
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -08001<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
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070075<h1><a href="iam_v1.html">Identity and Access Management (IAM) API</a> . <a href="iam_v1.projects.html">projects</a> . <a href="iam_v1.projects.serviceAccounts.html">serviceAccounts</a> . <a href="iam_v1.projects.serviceAccounts.keys.html">keys</a></h1>
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -080076<h2>Instance Methods</h2>
77<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070078 <code><a href="#create">create(name, body=None, x__xgafv=None)</a></code></p>
Bu Sun Kimd059ad82020-07-22 17:02:09 -070079<p class="firstline">Creates a ServiceAccountKey.</p>
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -080080<p class="toc_element">
Thomas Coffee2f245372017-03-27 10:39:26 -070081 <code><a href="#delete">delete(name, x__xgafv=None)</a></code></p>
Sai Cheemalapatiea3a5e12016-10-12 14:05:53 -070082<p class="firstline">Deletes a ServiceAccountKey.</p>
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -080083<p class="toc_element">
Thomas Coffee2f245372017-03-27 10:39:26 -070084 <code><a href="#get">get(name, publicKeyType=None, x__xgafv=None)</a></code></p>
Bu Sun Kimd059ad82020-07-22 17:02:09 -070085<p class="firstline">Gets a ServiceAccountKey.</p>
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -080086<p class="toc_element">
Thomas Coffee2f245372017-03-27 10:39:26 -070087 <code><a href="#list">list(name, keyTypes=None, x__xgafv=None)</a></code></p>
Bu Sun Kimd059ad82020-07-22 17:02:09 -070088<p class="firstline">Lists every ServiceAccountKey for a service account.</p>
Dan O'Mearadd494642020-05-01 07:42:23 -070089<p class="toc_element">
90 <code><a href="#upload">upload(name, body=None, x__xgafv=None)</a></code></p>
Bu Sun Kimd059ad82020-07-22 17:02:09 -070091<p class="firstline">Creates a ServiceAccountKey, using a public key that you provide.</p>
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -080092<h3>Method Details</h3>
93<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -070094 <code class="details" id="create">create(name, body=None, x__xgafv=None)</code>
Bu Sun Kimd059ad82020-07-22 17:02:09 -070095 <pre>Creates a ServiceAccountKey.
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -080096
97Args:
Dan O'Mearadd494642020-05-01 07:42:23 -070098 name: string, Required. The resource name of the service account in the following format:
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070099`projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}`.
100Using `-` as a wildcard for the `PROJECT_ID` will infer the project from
101the account. The `ACCOUNT` value can be the `email` address or the
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400102`unique_id` of the service account. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700103 body: object, The request body.
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -0800104 The object takes the form of:
105
106{ # The service account key create request.
Bu Sun Kim65020912020-05-20 12:08:20 -0700107 &quot;keyAlgorithm&quot;: &quot;A String&quot;, # Which type of key and algorithm to use for the key.
Dan O'Mearadd494642020-05-01 07:42:23 -0700108 # The default is currently a 2K RSA key. However this may change in the
109 # future.
Bu Sun Kim65020912020-05-20 12:08:20 -0700110 &quot;privateKeyType&quot;: &quot;A String&quot;, # The output format of the private key. The default value is
111 # `TYPE_GOOGLE_CREDENTIALS_FILE`, which is the Google Credentials File
112 # format.
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -0800113 }
114
115 x__xgafv: string, V1 error format.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400116 Allowed values
117 1 - v1 error format
118 2 - v2 error format
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -0800119
120Returns:
121 An object of the form:
122
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400123 { # Represents a service account key.
124 #
125 # A service account has two sets of key-pairs: user-managed, and
126 # system-managed.
127 #
128 # User-managed key-pairs can be created and deleted by users. Users are
129 # responsible for rotating these keys periodically to ensure security of
130 # their service accounts. Users retain the private key of these key-pairs,
131 # and Google retains ONLY the public key.
132 #
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700133 # System-managed keys are automatically rotated by Google, and are used for
134 # signing for a maximum of two weeks. The rotation process is probabilistic,
Bu Sun Kim65020912020-05-20 12:08:20 -0700135 # and usage of the new key will gradually ramp up and down over the key&#x27;s
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700136 # lifetime. We recommend caching the public key set for a service account for
137 # no more than 24 hours to ensure you have access to the latest keys.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400138 #
139 # Public keys for all service accounts are also published at the OAuth2
140 # Service Account API.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700141 &quot;privateKeyType&quot;: &quot;A String&quot;, # The output format for the private key.
142 # Only provided in `CreateServiceAccountKey` responses, not
143 # in `GetServiceAccountKey` or `ListServiceAccountKey` responses.
144 #
145 # Google never exposes system-managed private keys, and never retains
146 # user-managed private keys.
147 &quot;validAfterTime&quot;: &quot;A String&quot;, # The key can be used after this timestamp.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700148 &quot;publicKeyData&quot;: &quot;A String&quot;, # The public key data. Only provided in `GetServiceAccountKey` responses.
149 &quot;name&quot;: &quot;A String&quot;, # The resource name of the service account key in the following format
150 # `projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}/keys/{key}`.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700151 &quot;keyOrigin&quot;: &quot;A String&quot;, # The key origin.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700152 &quot;validBeforeTime&quot;: &quot;A String&quot;, # The key can be used before this timestamp.
153 # For system-managed key pairs, this timestamp is the end time for the
154 # private key signing operation. The public key could still be used
155 # for verification for a few hours after this time.
156 &quot;keyAlgorithm&quot;: &quot;A String&quot;, # Specifies the algorithm (and possibly key size) for the key.
157 &quot;keyType&quot;: &quot;A String&quot;, # The key type.
158 &quot;privateKeyData&quot;: &quot;A String&quot;, # The private key data. Only provided in `CreateServiceAccountKey`
159 # responses. Make sure to keep the private key data secure because it
160 # allows for the assertion of the service account identity.
161 # When base64 decoded, the private key data can be used to authenticate with
162 # Google API client libraries and with
163 # &lt;a href=&quot;/sdk/gcloud/reference/auth/activate-service-account&quot;&gt;gcloud
164 # auth activate-service-account&lt;/a&gt;.
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -0800165 }</pre>
166</div>
167
168<div class="method">
Thomas Coffee2f245372017-03-27 10:39:26 -0700169 <code class="details" id="delete">delete(name, x__xgafv=None)</code>
Sai Cheemalapatiea3a5e12016-10-12 14:05:53 -0700170 <pre>Deletes a ServiceAccountKey.
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -0800171
172Args:
Dan O'Mearadd494642020-05-01 07:42:23 -0700173 name: string, Required. The resource name of the service account key in the following format:
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700174`projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}/keys/{key}`.
175Using `-` as a wildcard for the `PROJECT_ID` will infer the project from
176the account. The `ACCOUNT` value can be the `email` address or the
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400177`unique_id` of the service account. (required)
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -0800178 x__xgafv: string, V1 error format.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400179 Allowed values
180 1 - v1 error format
181 2 - v2 error format
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -0800182
183Returns:
184 An object of the form:
185
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400186 { # A generic empty message that you can re-use to avoid defining duplicated
187 # empty messages in your APIs. A typical example is to use it as the request
188 # or the response type of an API method. For instance:
189 #
190 # service Foo {
191 # rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);
192 # }
193 #
194 # The JSON representation for `Empty` is empty JSON object `{}`.
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -0800195 }</pre>
196</div>
197
198<div class="method">
Thomas Coffee2f245372017-03-27 10:39:26 -0700199 <code class="details" id="get">get(name, publicKeyType=None, x__xgafv=None)</code>
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700200 <pre>Gets a ServiceAccountKey.
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -0800201
202Args:
Dan O'Mearadd494642020-05-01 07:42:23 -0700203 name: string, Required. The resource name of the service account key in the following format:
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700204`projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}/keys/{key}`.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400205
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700206Using `-` as a wildcard for the `PROJECT_ID` will infer the project from
207the account. The `ACCOUNT` value can be the `email` address or the
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400208`unique_id` of the service account. (required)
209 publicKeyType: string, The output format of the public key requested.
210X509_PEM is the default output format.
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -0800211 x__xgafv: string, V1 error format.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400212 Allowed values
213 1 - v1 error format
214 2 - v2 error format
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -0800215
216Returns:
217 An object of the form:
218
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400219 { # Represents a service account key.
220 #
221 # A service account has two sets of key-pairs: user-managed, and
222 # system-managed.
223 #
224 # User-managed key-pairs can be created and deleted by users. Users are
225 # responsible for rotating these keys periodically to ensure security of
226 # their service accounts. Users retain the private key of these key-pairs,
227 # and Google retains ONLY the public key.
228 #
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700229 # System-managed keys are automatically rotated by Google, and are used for
230 # signing for a maximum of two weeks. The rotation process is probabilistic,
Bu Sun Kim65020912020-05-20 12:08:20 -0700231 # and usage of the new key will gradually ramp up and down over the key&#x27;s
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700232 # lifetime. We recommend caching the public key set for a service account for
233 # no more than 24 hours to ensure you have access to the latest keys.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400234 #
235 # Public keys for all service accounts are also published at the OAuth2
236 # Service Account API.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700237 &quot;privateKeyType&quot;: &quot;A String&quot;, # The output format for the private key.
238 # Only provided in `CreateServiceAccountKey` responses, not
239 # in `GetServiceAccountKey` or `ListServiceAccountKey` responses.
240 #
241 # Google never exposes system-managed private keys, and never retains
242 # user-managed private keys.
243 &quot;validAfterTime&quot;: &quot;A String&quot;, # The key can be used after this timestamp.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700244 &quot;publicKeyData&quot;: &quot;A String&quot;, # The public key data. Only provided in `GetServiceAccountKey` responses.
245 &quot;name&quot;: &quot;A String&quot;, # The resource name of the service account key in the following format
246 # `projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}/keys/{key}`.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700247 &quot;keyOrigin&quot;: &quot;A String&quot;, # The key origin.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700248 &quot;validBeforeTime&quot;: &quot;A String&quot;, # The key can be used before this timestamp.
249 # For system-managed key pairs, this timestamp is the end time for the
250 # private key signing operation. The public key could still be used
251 # for verification for a few hours after this time.
252 &quot;keyAlgorithm&quot;: &quot;A String&quot;, # Specifies the algorithm (and possibly key size) for the key.
253 &quot;keyType&quot;: &quot;A String&quot;, # The key type.
254 &quot;privateKeyData&quot;: &quot;A String&quot;, # The private key data. Only provided in `CreateServiceAccountKey`
255 # responses. Make sure to keep the private key data secure because it
256 # allows for the assertion of the service account identity.
257 # When base64 decoded, the private key data can be used to authenticate with
258 # Google API client libraries and with
259 # &lt;a href=&quot;/sdk/gcloud/reference/auth/activate-service-account&quot;&gt;gcloud
260 # auth activate-service-account&lt;/a&gt;.
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -0800261 }</pre>
262</div>
263
264<div class="method">
Thomas Coffee2f245372017-03-27 10:39:26 -0700265 <code class="details" id="list">list(name, keyTypes=None, x__xgafv=None)</code>
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700266 <pre>Lists every ServiceAccountKey for a service account.
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -0800267
268Args:
Dan O'Mearadd494642020-05-01 07:42:23 -0700269 name: string, Required. The resource name of the service account in the following format:
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700270`projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}`.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400271
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700272Using `-` as a wildcard for the `PROJECT_ID`, will infer the project from
273the account. The `ACCOUNT` value can be the `email` address or the
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400274`unique_id` of the service account. (required)
275 keyTypes: string, Filters the types of keys the user wants to include in the list
276response. Duplicate key types are not allowed. If no key type
277is provided, all keys are returned. (repeated)
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -0800278 x__xgafv: string, V1 error format.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400279 Allowed values
280 1 - v1 error format
281 2 - v2 error format
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -0800282
283Returns:
284 An object of the form:
285
286 { # The service account keys list response.
Bu Sun Kim65020912020-05-20 12:08:20 -0700287 &quot;keys&quot;: [ # The public keys for the service account.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400288 { # Represents a service account key.
289 #
290 # A service account has two sets of key-pairs: user-managed, and
291 # system-managed.
292 #
293 # User-managed key-pairs can be created and deleted by users. Users are
294 # responsible for rotating these keys periodically to ensure security of
295 # their service accounts. Users retain the private key of these key-pairs,
296 # and Google retains ONLY the public key.
297 #
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700298 # System-managed keys are automatically rotated by Google, and are used for
299 # signing for a maximum of two weeks. The rotation process is probabilistic,
Bu Sun Kim65020912020-05-20 12:08:20 -0700300 # and usage of the new key will gradually ramp up and down over the key&#x27;s
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700301 # lifetime. We recommend caching the public key set for a service account for
302 # no more than 24 hours to ensure you have access to the latest keys.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400303 #
304 # Public keys for all service accounts are also published at the OAuth2
305 # Service Account API.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700306 &quot;privateKeyType&quot;: &quot;A String&quot;, # The output format for the private key.
307 # Only provided in `CreateServiceAccountKey` responses, not
308 # in `GetServiceAccountKey` or `ListServiceAccountKey` responses.
309 #
310 # Google never exposes system-managed private keys, and never retains
311 # user-managed private keys.
312 &quot;validAfterTime&quot;: &quot;A String&quot;, # The key can be used after this timestamp.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700313 &quot;publicKeyData&quot;: &quot;A String&quot;, # The public key data. Only provided in `GetServiceAccountKey` responses.
314 &quot;name&quot;: &quot;A String&quot;, # The resource name of the service account key in the following format
315 # `projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}/keys/{key}`.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700316 &quot;keyOrigin&quot;: &quot;A String&quot;, # The key origin.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700317 &quot;validBeforeTime&quot;: &quot;A String&quot;, # The key can be used before this timestamp.
318 # For system-managed key pairs, this timestamp is the end time for the
319 # private key signing operation. The public key could still be used
320 # for verification for a few hours after this time.
321 &quot;keyAlgorithm&quot;: &quot;A String&quot;, # Specifies the algorithm (and possibly key size) for the key.
322 &quot;keyType&quot;: &quot;A String&quot;, # The key type.
323 &quot;privateKeyData&quot;: &quot;A String&quot;, # The private key data. Only provided in `CreateServiceAccountKey`
324 # responses. Make sure to keep the private key data secure because it
325 # allows for the assertion of the service account identity.
326 # When base64 decoded, the private key data can be used to authenticate with
327 # Google API client libraries and with
328 # &lt;a href=&quot;/sdk/gcloud/reference/auth/activate-service-account&quot;&gt;gcloud
329 # auth activate-service-account&lt;/a&gt;.
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -0800330 },
331 ],
332 }</pre>
333</div>
334
Dan O'Mearadd494642020-05-01 07:42:23 -0700335<div class="method">
336 <code class="details" id="upload">upload(name, body=None, x__xgafv=None)</code>
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700337 <pre>Creates a ServiceAccountKey, using a public key that you provide.
Dan O'Mearadd494642020-05-01 07:42:23 -0700338
339Args:
340 name: string, The resource name of the service account in the following format:
341`projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}`.
342Using `-` as a wildcard for the `PROJECT_ID` will infer the project from
343the account. The `ACCOUNT` value can be the `email` address or the
344`unique_id` of the service account. (required)
345 body: object, The request body.
346 The object takes the form of:
347
348{ # The service account key upload request.
Bu Sun Kim65020912020-05-20 12:08:20 -0700349 &quot;publicKeyData&quot;: &quot;A String&quot;, # A field that allows clients to upload their own public key. If set,
Dan O'Mearadd494642020-05-01 07:42:23 -0700350 # use this public key data to create a service account key for given
351 # service account.
352 # Please note, the expected format for this field is X509_PEM.
353 }
354
355 x__xgafv: string, V1 error format.
356 Allowed values
357 1 - v1 error format
358 2 - v2 error format
359
360Returns:
361 An object of the form:
362
363 { # Represents a service account key.
364 #
365 # A service account has two sets of key-pairs: user-managed, and
366 # system-managed.
367 #
368 # User-managed key-pairs can be created and deleted by users. Users are
369 # responsible for rotating these keys periodically to ensure security of
370 # their service accounts. Users retain the private key of these key-pairs,
371 # and Google retains ONLY the public key.
372 #
373 # System-managed keys are automatically rotated by Google, and are used for
374 # signing for a maximum of two weeks. The rotation process is probabilistic,
Bu Sun Kim65020912020-05-20 12:08:20 -0700375 # and usage of the new key will gradually ramp up and down over the key&#x27;s
Dan O'Mearadd494642020-05-01 07:42:23 -0700376 # lifetime. We recommend caching the public key set for a service account for
377 # no more than 24 hours to ensure you have access to the latest keys.
378 #
379 # Public keys for all service accounts are also published at the OAuth2
380 # Service Account API.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700381 &quot;privateKeyType&quot;: &quot;A String&quot;, # The output format for the private key.
382 # Only provided in `CreateServiceAccountKey` responses, not
383 # in `GetServiceAccountKey` or `ListServiceAccountKey` responses.
384 #
385 # Google never exposes system-managed private keys, and never retains
386 # user-managed private keys.
387 &quot;validAfterTime&quot;: &quot;A String&quot;, # The key can be used after this timestamp.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700388 &quot;publicKeyData&quot;: &quot;A String&quot;, # The public key data. Only provided in `GetServiceAccountKey` responses.
389 &quot;name&quot;: &quot;A String&quot;, # The resource name of the service account key in the following format
390 # `projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}/keys/{key}`.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700391 &quot;keyOrigin&quot;: &quot;A String&quot;, # The key origin.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700392 &quot;validBeforeTime&quot;: &quot;A String&quot;, # The key can be used before this timestamp.
393 # For system-managed key pairs, this timestamp is the end time for the
394 # private key signing operation. The public key could still be used
395 # for verification for a few hours after this time.
396 &quot;keyAlgorithm&quot;: &quot;A String&quot;, # Specifies the algorithm (and possibly key size) for the key.
397 &quot;keyType&quot;: &quot;A String&quot;, # The key type.
398 &quot;privateKeyData&quot;: &quot;A String&quot;, # The private key data. Only provided in `CreateServiceAccountKey`
399 # responses. Make sure to keep the private key data secure because it
400 # allows for the assertion of the service account identity.
401 # When base64 decoded, the private key data can be used to authenticate with
402 # Google API client libraries and with
403 # &lt;a href=&quot;/sdk/gcloud/reference/auth/activate-service-account&quot;&gt;gcloud
404 # auth activate-service-account&lt;/a&gt;.
Dan O'Mearadd494642020-05-01 07:42:23 -0700405 }</pre>
406</div>
407
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -0800408</body></html>