Cloud Functions v1 API - Class SecretEnvVar (2.5.0)

public sealed class SecretEnvVar : IMessage<SecretEnvVar>, IEquatable<SecretEnvVar>, IDeepCloneable<SecretEnvVar>, IBufferMessage, IMessage

Reference documentation and code samples for the Cloud Functions v1 API class SecretEnvVar.

Configuration for a secret environment variable. It has the information necessary to fetch the secret value from secret manager and expose it as an environment variable.

Inheritance

object > SecretEnvVar

Namespace

Google.Cloud.Functions.V1

Assembly

Google.Cloud.Functions.V1.dll

Constructors

SecretEnvVar()

public SecretEnvVar()

SecretEnvVar(SecretEnvVar)

public SecretEnvVar(SecretEnvVar other)
Parameter
NameDescription
otherSecretEnvVar

Properties

Key

public string Key { get; set; }

Name of the environment variable.

Property Value
TypeDescription
string

ProjectId

public string ProjectId { get; set; }

Project identifier (preferrably project number but can also be the project ID) of the project that contains the secret. If not set, it will be populated with the function's project assuming that the secret exists in the same project as of the function.

Property Value
TypeDescription
string

Secret

public string Secret { get; set; }

Name of the secret in secret manager (not the full resource name).

Property Value
TypeDescription
string

Version

public string Version { get; set; }

Version of the secret (version number or the string 'latest'). It is recommended to use a numeric version for secret environment variables as any updates to the secret value is not reflected until new instances start.

Property Value
TypeDescription
string