Class: Google::Cloud::Functions::V1::SecretEnvVar

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/functions/v1/functions.rb

Overview

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. Secret value is not a part of the configuration. Secret values are only fetched when a new clone starts.

Instance Attribute Summary collapse

Instance Attribute Details

#key::String

Returns Name of the environment variable.

Returns:

  • (::String)

    Name of the environment variable.



456
457
458
459
# File 'proto_docs/google/cloud/functions/v1/functions.rb', line 456

class SecretEnvVar
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods
end

#project_id::String

Returns 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.

Returns:

  • (::String)

    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.



456
457
458
459
# File 'proto_docs/google/cloud/functions/v1/functions.rb', line 456

class SecretEnvVar
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods
end

#secret::String

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

Returns:

  • (::String)

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



456
457
458
459
# File 'proto_docs/google/cloud/functions/v1/functions.rb', line 456

class SecretEnvVar
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods
end

#version::String

Returns 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 clones start.

Returns:

  • (::String)

    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 clones start.



456
457
458
459
# File 'proto_docs/google/cloud/functions/v1/functions.rb', line 456

class SecretEnvVar
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods
end