Class: Google::Apis::CloudfunctionsV2::SecretVersion
- Inherits:
-
Object
- Object
- Google::Apis::CloudfunctionsV2::SecretVersion
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudfunctions_v2/classes.rb,
lib/google/apis/cloudfunctions_v2/representations.rb,
lib/google/apis/cloudfunctions_v2/representations.rb
Overview
Configuration for a single version.
Instance Attribute Summary collapse
-
#path ⇒ String
Relative path of the file under the mount path where the secret value for this version will be fetched and made available.
-
#version ⇒ String
Version of the secret (version number or the string 'latest').
Instance Method Summary collapse
-
#initialize(**args) ⇒ SecretVersion
constructor
A new instance of SecretVersion.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SecretVersion
Returns a new instance of SecretVersion.
1664 1665 1666 |
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1664 def initialize(**args) update!(**args) end |
Instance Attribute Details
#path ⇒ String
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
.
Corresponds to the JSON property path
1655 1656 1657 |
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1655 def path @path end |
#version ⇒ String
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.
Corresponds to the JSON property version
1662 1663 1664 |
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1662 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1669 1670 1671 1672 |
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1669 def update!(**args) @path = args[:path] if args.key?(:path) @version = args[:version] if args.key?(:version) end |