class Google::Apis::GenomicsV1::Secret
Holds encrypted information that is only decrypted and stored in RAM by the worker VM when running the pipeline.
Attributes
cipher_text[RW]
The value of the cipherText response from the `encrypt` method. This field is intentionally unaudited. Corresponds to the JSON property `cipherText` @return [String]
key_name[RW]
The name of the Cloud KMS key that will be used to decrypt the secret value. The VM service account must have the required permissions and authentication scopes to invoke the `decrypt` method on the specified key. Corresponds to the JSON property `keyName` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/genomics_v1/classes.rb, line 791 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/genomics_v1/classes.rb, line 796 def update!(**args) @cipher_text = args[:cipher_text] if args.key?(:cipher_text) @key_name = args[:key_name] if args.key?(:key_name) end