Class: Google::Cloud::Dlp::V2::TransientCryptoKey
- Inherits:
-
Object
- Object
- Google::Cloud::Dlp::V2::TransientCryptoKey
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/privacy/dlp/v2/dlp.rb
Overview
Use this to have a random data crypto key generated. It will be discarded after the request finishes.
Instance Attribute Summary collapse
-
#name ⇒ ::String
Required.
Instance Attribute Details
#name ⇒ ::String
Returns Required. Name of the key.
This is an arbitrary string used to differentiate different keys.
A unique key is generated per name: two separate TransientCryptoKey
protos share the same generated key if their names are the same.
When the data crypto key is generated, this name is not used in any way
(repeating the api call will result in a different key being generated).
2739 2740 2741 2742 |
# File 'proto_docs/google/privacy/dlp/v2/dlp.rb', line 2739 class TransientCryptoKey include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |