You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Retrieve the list of secrets created within an Organization and/or Project. You must specify either the `organization_id` or the `project_id` and the `region`.
269
226
:param region: Region to target. If none is passed will use default region from the config.
270
227
:param organization_id: Filter by Organization ID (optional).
271
228
:param project_id: Filter by Project ID (optional).
272
-
:param name: Filter by secret name (optional).
273
-
:param tags: List of tags to filter on (optional).
274
-
:param is_managed: Filter by managed / not managed (optional).
275
229
:param order_by:
276
230
:param page:
277
231
:param page_size:
232
+
:param tags: List of tags to filter on (optional).
233
+
:param name: Filter by secret name (optional).
234
+
:param is_managed: Filter by managed / not managed (optional).
Retrieve the list of secrets created within an Organization and/or Project. You must specify either the `organization_id` or the `project_id` and the `region`.
325
282
:param region: Region to target. If none is passed will use default region from the config.
326
283
:param organization_id: Filter by Organization ID (optional).
327
284
:param project_id: Filter by Project ID (optional).
328
-
:param name: Filter by secret name (optional).
329
-
:param tags: List of tags to filter on (optional).
330
-
:param is_managed: Filter by managed / not managed (optional).
331
285
:param order_by:
332
286
:param page:
333
287
:param page_size:
288
+
:param tags: List of tags to filter on (optional).
289
+
:param name: Filter by secret name (optional).
290
+
:param is_managed: Filter by managed / not managed (optional).
:param data: The base64-encoded secret payload of the version.
407
407
:param description: Description of the version.
408
408
:param disable_previous: Disable the previous secret version.
409
-
If there is no previous version or if the previous version was already disabled, does nothing.
409
+
Optional. If there is no previous version or if the previous version was already disabled, does nothing.
410
410
:param password_generation: Options to generate a password.
411
-
If specified, a random password will be generated. The data field must be empty. By default, the generator will use upper and lower case letters, and digits. This behavior can be tuned using the generation parameters.
411
+
Optional. If specified, a random password will be generated. The `data` and `data_crc32` fields must be empty. By default, the generator will use upper and lower case letters, and digits. This behavior can be tuned using the generation parameters.
412
412
413
413
One-of ('_password_generation'): at most one of 'password_generation' could be set.
414
414
:param data_crc32: The CRC32 checksum of the data as a base-10 integer.
415
-
This field is optional and can be set to 0. If greater than 0, the Secret Manager will verify the integrity of the data received against the given CRC32. An error is returned if the CRC32 does not match. Otherwise, the CRC32 will be stored and returned along with the SecretVersion on futur accesses.
415
+
Optional. If specified, Secret Manager will verify the integrity of the data received against the given CRC32. An error is returned if the CRC32 does not match. Otherwise, the CRC32 will be stored and returned along with the SecretVersion on futur accesses.
0 commit comments