Class: Google::Apis::SecretmanagerV1beta1::SecretPayload
- Inherits:
-
Object
- Object
- Google::Apis::SecretmanagerV1beta1::SecretPayload
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/secretmanager_v1beta1/classes.rb,
generated/google/apis/secretmanager_v1beta1/representations.rb,
generated/google/apis/secretmanager_v1beta1/representations.rb
Overview
A secret payload resource in the Secret Manager API. This contains the sensitive secret data that is associated with a SecretVersion.
Instance Attribute Summary collapse
-
#data ⇒ String
The secret data.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SecretPayload
constructor
A new instance of SecretPayload.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SecretPayload
Returns a new instance of SecretPayload.
666 667 668 |
# File 'generated/google/apis/secretmanager_v1beta1/classes.rb', line 666 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data ⇒ String
The secret data. Must be no larger than 64KiB.
Corresponds to the JSON property data
NOTE: Values are automatically base64 encoded/decoded in the client library.
664 665 666 |
# File 'generated/google/apis/secretmanager_v1beta1/classes.rb', line 664 def data @data end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
671 672 673 |
# File 'generated/google/apis/secretmanager_v1beta1/classes.rb', line 671 def update!(**args) @data = args[:data] if args.key?(:data) end |