Class SecretVersion
Configuration for a single version.
Implements
Inherited Members
Namespace: Google.Apis.CloudFunctions.v2.Data
Assembly: Google.Apis.CloudFunctions.v2.dll
Syntax
public class SecretVersion : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Path
Relative path of the file under the mount path where the secret value for this version will be fetched and
made available. For example, setting the mount_path as '/etc/secrets' and path as secret_foo
would mount
the secret value file at /etc/secrets/secret_foo
.
Declaration
[JsonProperty("path")]
public virtual string Path { get; set; }
Property Value
Type | Description |
---|---|
string |
Version
Version of the secret (version number or the string 'latest'). It is preferable to use latest
version with
secret volumes as secret value changes are reflected immediately.
Declaration
[JsonProperty("version")]
public virtual string Version { get; set; }
Property Value
Type | Description |
---|---|
string |