Method: googleapis.secretmanager.v1.projects.secrets.versions.accessRaw

Should be removed and not recommended to use as it enforces UTF-8 conversion that could corrupt user's secret.

Arguments

Parameters
secret_id

string

Required. The secret name in string format. For example, foo.

version

string

The version of the secret. If not present, latest is used to indicate access to the latest version.

project_id

string

The project ID associated with the secret. If not present, the ID of the current project is used.

Raised exceptions

Exceptions
ConnectionError In case of a network problem (such as DNS failure or refused connection).
HttpError If the response status is >= 400.
TimeoutError If a long-running operation takes longer to finish than the specified timeout limit.
TypeError If an operation or function receives an argument of the wrong type.
ValueError If an operation or function receives an argument of the right type but an inappropriate value. For example, a negative timeout.

Response

The decoded secret value.

Subworkflow snippet

Some fields might be optional or required.

YAML

- accessRaw:
    call: googleapis.secretmanager.v1.projects.secrets.versions.accessRaw
    args:
        secret_id: ...
        version: ...
        project_id: ...
    result: accessRawResult

JSON

[
  {
    "accessRaw": {
      "call": "googleapis.secretmanager.v1.projects.secrets.versions.accessRaw",
      "args": {
        "secret_id": "...",
        "version": "...",
        "project_id": "..."
      },
      "result": "accessRawResult"
    }
  }
]