public sealed class SecretEnvVar : IMessage<SecretEnvVar>, IEquatable<SecretEnvVar>, IDeepCloneable<SecretEnvVar>, IBufferMessage, IMessage
Reference documentation and code samples for the Cloud Functions v2 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.
Implements
IMessageSecretEnvVar, IEquatableSecretEnvVar, IDeepCloneableSecretEnvVar, IBufferMessage, IMessageNamespace
Google.Cloud.Functions.V2Assembly
Google.Cloud.Functions.V2.dll
Constructors
SecretEnvVar()
public SecretEnvVar()
SecretEnvVar(SecretEnvVar)
public SecretEnvVar(SecretEnvVar other)
Parameter | |
---|---|
Name | Description |
other |
SecretEnvVar |
Properties
Key
public string Key { get; set; }
Name of the environment variable.
Property Value | |
---|---|
Type | Description |
string |
ProjectId
public string ProjectId { get; set; }
Project identifier (preferably project number but can also be the project ID) of the project that contains the secret. If not set, it is assumed that the secret is in the same project as the function.
Property Value | |
---|---|
Type | Description |
string |
Secret
public string Secret { get; set; }
Name of the secret in secret manager (not the full resource name).
Property Value | |
---|---|
Type | Description |
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 | |
---|---|
Type | Description |
string |